Perl and some other current regex engines support Unicode properties, such as the category, in a regex. E.g. in Perl you can use \p{Ll} to match an arbitrary lower-case letter, or p{Zs} for any space separator. I don't see support for this in either the 2.x nor 3.x lines of Python (with due regrets). Is anybody aware of a good strategy to get a similar effect? Homegrown solutions are welcome.
|
|
||||
|
Have you tried Ponyguruma, a Python binding to the Oniguruma regular expression engine? In that engine you can simply say |
|||||||
|
|
|
The regex module (an alternative to the standard |
|||
|
You're right that Unicode property classes are not supported by the Python regex parser. If you wanted to do a nice hack, that would be generally useful, you could create a preprocessor that scans a string for such class tokens ( People would thank you. :) |
|||
|
|
You can painstakingly use unicodedata on each character:
|
|||
|
|
Note that while |
|||||||||
|
|
Speaking of homegrown solutions, some time ago I wrote a small program to do just that - convert a unicode category written as Example usage:
Here's the source. There is also a JavaScript version, using the same data. |
|||||||||
|
\p{Block=Greek}, \p{Script=Armenian}, \p{General_Category=Uppercase_Letter}, \p{White_Space}, \p{Alphabetic}, \p{Math}, \p{Bidi_Class=Right_to_Left}, \p{Word_Break=A_Letter }, \p{Numeric_Value=10}, \p{Hangul_Syllable_Type=Leading_Jamo}, \p{Sentence_Break=SContinue},and around 1,000 more. Only Perl’s and ICU’s regexes bother to cover the full complement of Unicode properties. Everybody else covers a tiny few, usually not even enough for minimal Unicode work. – tchrist Apr 25 '11 at 23:03