When I try to use pattern \p{Zs}
to match any kind of space, I get error:
Escape sequence was neither a valid property nor a valid character class name.
The error occurred while parsing the regular expression: '\p{Zs}>>>HERE>>>'. in regular expression \p{Zs}
Is there any way that I can make this pattern work?
FYI: https://regex101.com/r/nnseOW/2
Thanks.
Manuel