andgineer / TRegExpr

Regular expressions (regex), pascal.
https://regex.sorokin.engineer/en/latest/
MIT License
174 stars 63 forks source link

Maybe todo: \X #186

Closed Alexey-T closed 2 years ago

Alexey-T commented 4 years ago

You should now understand why \P{M}\p{M}*+ is the equivalent of \X. \P{M} matches a code point that is not a combining mark, while \p{M}*+ matches zero or more code points that are combining marks.

http://www.regular-expressions.info/unicode.html#prop

Alexey-T commented 2 years ago

declined, no one needs it.