[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

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -