I am trying to write a regex validator in python that included accented characters for instance in French, however, I cannot find a valid regex pattern that does this. I have already tried: What's a good regex to include accented characters in a simple way?
But I still cannot validate ådam
for instance I basically want all alphanumeric characters plus -
, space and apostrophe included but the regex I used is not working:
(?i)^(?:(?![×Þß÷þø])[-'0-9a-zÀ-ÿ ])+$