Closed benibela closed 3 years ago
I forgot the [rfUTF8] flag
This works:
writeln(1 = TFLRE.Create('^(?:\p{Z})$', [rfUTF8]).Find(' ')); //U+1680, U+3000, U+2028, U+2028, U+2029, U+2029 writeln(1 = TFLRE.Create('^(?:\p{Zl})$', [rfUTF8]).Find(' ')); //U+2028 writeln(0 = TFLRE.Create('^(?:\P{Zl}*)$', [rfUTF8]).Find(' ')); //U+2028 with the inverted class
You can delete the issue
These should match
This one should not