K.Kosako

Results 4 issues of K.Kosako

If you do a Google search for the keyword "oniguruma" you'll see some very strange results. The first few links that appear on the first page are related to the...

status

``` p /(?~ab)/.match("abc") p /(?~abc)/.match("abc") p /(?~ab|abc)/.match("abc") => # # # ``` But ``` p /(?~abc|ab)/.match("abc") => # ```

(1) Matching a? or a* with an empty string failed. (2) Using nested repeat operators failed. For example, a?+ with string "a".

For "aaa..." (9000 chars) /a+b/ real 0m0.174s user 0m0.168s sys 0m0.004s /a+\Jb/ real 0m0.007s user 0m0.002s sys 0m0.004s