I am trying to match a string to see if it only consists out of letters. All kinds of letters should be allowed. So the typical a-zA-Z
, but also áàéèó...
etc.
I tried to match it with the following regex: ([\S])*
But this also allows characters like \/<>*()...
etc. Those are obviously characters that don't belong in a name. How does the regex looks like when i only want to allow letters and 'special' letters?