The Ruby programming language, since version 1.9, as well as PHP's multi-byte string module (since PHP5), use Oniguruma as their regular expression engine. (c) K.Kosako, updated at: 2010/01/09 Official Page - http://www.geocities.jp/kosako3/oniguruma/
14
votes
2answers
221 views
Why does the =~ operator only sometimes have side effects?
I've noticed a side effect in Ruby/Oniguruma that is only present in 1 out of 4 seemingly equivalent statements. Why is the variable day defined in 009, but not in 003, 005 or 007?
...
6
votes
1answer
111 views
Are Ruby 1.9 regular expressions equally powerful to a context free grammar?
I have this regular expression:
regex = %r{\A(?<foo> a\g<foo>a | b\g<foo>b | c)\Z}x
When I test it against several strings, it appears to be as powerful as a context free grammar ...
3
votes
1answer
99 views
Regex with ? quantifier inside passive group?
I'm editing a TextMate grammar for SQL. It currently has the regex (keywords omitted for clarify):
(?i:^\s*(create)\s+(aggregate|function|(unique\s+)?index|table)\s+)(['"`]?)(\w+)\4
This correctly ...
1
vote
0answers
132 views
How do I specify a valid character property using Oniguruma regexes?
I'm using the oniguruma gem to get unicode-aware regexes in ruby 1.8. According to the syntax documentation, I should be able to use \p{M} or \p{Mark} to match code points with the Mark property.
...
0
votes
0answers
123 views
How to use Oniguruma in Ruby 1.9.2?
I have used Oniguruma in Ruby 1.8.7 to parse my regular expressions but now i am moving to Ruby 1.9.2 and can someone please tell me, what are the changes that needs to be done.
I guess oniguruma is ...