[CMake]: How to match Unicode characters in REGEX command? -
Is it possible to write a string in this limit (regex MATCHALL "^ [xxx] *") Patterns such that it will match Unicode string? For example, "abcčřž" etc. What should 'Xxx' sequence look?
I think you want it:
^ \ P {L} + $ You may want to take a look.
Comments
Post a Comment