-Oniguruma Regular Expressions Version 6.5.0 2017/07/14
+Oniguruma Regular Expressions Version 6.5.0 2017/07/18
syntax: ONIG_SYNTAX_RUBY (default)
Assigning the same name to two or more subexps is allowed.
(?~absent_exp) Absent group (* proposed by Tanaka Akira)
- This works like ".*", but it is limited by the range that
- does not include the string match with absent_exp.
- ".*" is used as a default generator.
- Therefore this is affected by the multi-line option (?m).
+ This works like .* (more precisely \O*), but it is
+ limited by the range that does not include the string
+ match with absent_exp.
+ \O* is used as a default generator.
+ Therefore this is not affected by the multi-line option (?m).
(?~|generator|absent_exp) Absent group with custom generator (* original)
Generator must be a greedy or possessive quantifier.
-鬼車 正規表現 Version 6.5.0 2017/07/15
+鬼車 正規表現 Version 6.5.0 2017/07/18
使用文法: ONIG_SYNTAX_RUBY (既定値)
部分式呼出しはできない。
(?~不在式) 不在式集合 (* 原案 田中哲)
- これは".*"のように動作するが、不在式に適合する文字列を
- 含まない範囲に制限される。
- ".*"が既定の生成子として使用される。
+ これは.*のように(より正確には\O*)動作するが、不在式に適合する
+ 文字列を含まない範囲に制限される。
+ \O*が既定の生成子として使用される。
そのため、マルチラインオプション(?m)の影響を受ける。
不在式が長さ0でマッチングする可能性があれば、常に失敗する。