Okay, I have read about regex all day now, and still don\'t understand it properly. What i\'m trying to do is validate a name, but the functions i can find for this on the i
you can add the allowed special chars to the regex.
example:
[a-zA-ZßöäüÖÄÜæé]+
EDIT:
not the best solution, but this would give a result if there are at least to words.
[a-zA-ZßöäüÖÄÜæé]+\s[a-zA-ZßöäüÖÄÜæé]+