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.

However, when I do the following

ORegexp.new '\p{M}',
            :options => OPTION_MULTILINE | OPTION_SINGLELINE | OPTION_IGNORECASE | OPTION_EXTEND,
            :syntax => SYNTAX_JAVA, # so we can use character properties
            :encoding => ENCODING_UTF8

I get ArgumentError: Oniguruma Error: invalid character property name {M}. I get the same error if I use {Mark}, or if I use one of the other syntaxes that support \p.

What am I doing wrong? How do I specify a valid character property using Oniguruma regexes?

UPDATE - If I use one of the UTF16 encodings, the regex compiles; but since my strings are in UTF8 that doesn't help. So my question becomes: how do I specify a valid character property using UTF-8 Oniguruma regexes?

link|improve this question

61% accept rate
Is your source file encoded in UTF-8? – Tim Pietzcker Mar 21 '11 at 14:38
@Tim: Yes, it is. – Simon Aug 11 '11 at 14:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.