I am trying to create a regex that will match characters, whitespaces, but not numbers.
So hello 123
will not match, but hell o
will.
I tried this:
[^\d\w]
but, I cannot find a way to add whitespaces here. I have to use \w
, because my strings can contain Unicode characters.