I need to combine Unicode letters, similar to PCRE \p{L}.
Now, since the Dart RegExp class is based on ECMAScript, it has no idea \p{L}, unfortunately.
I am looking, perhaps, for creating a large character class that matches all Unicode letters, but I'm not sure where to start.
So, I want to match letters like:
foobar
מכון ראות
But the character R must not match:
BlackBerry®
Also, there should not be any ASCII control characters or punctuation marks, etc. Essentially every letter in every Unicode language supports, whether å, ä, φ or ת, they must match if they are actual letters.
source
share