Regex - Unicode Properties Reference and Examples
I feel lost with the Regex Unicode Properties presented by RegexBuddy, I cannot distinguish between any of the Number properties and the Math symbol 开发者_StackOverflow社区property only seems to match +
but not -
, *
, /
, ^
for instance.
Is there any documentation / reference with examples on regular expressions Unicode properties?
Unicode Character Properties
The ones that you’ve listed there in your example are actually all the same Unicode character property, the General Category property. Some regex systems provide access only to this one property alone; others include access to the Block property (not very useful) or to the Script property (much more useful).
A more complete explanation of the \p{Property Name}
and \p{Property Name = Property Value}
syntax in Perl regexes is given in the following text from page 209 of
精彩评论