I'm no good at at regular expression but here is my problem! I need a regular expression to match no word characters and white spaces but to escape characters like Ö,ä,ü,Ü,Äö . I use PHP as server side scripting.
examlpe: !@#!@$%>< #$$ #$@^% is a god match
!@##$%$#%# @$#@! !@#!@#ÖÄü is a bad match it has ÖÄü
I tried something like this
'/[.,;:@\-_()\!"\$%&\/=\?\*\`\~\^\\\|\'\+#<>{}\[\](\s)]/'
but '\s' is not matching white space's ????
If someone could correct this exression in order to alsow match white spaces it would be great.
'/[.,;:@\-_()\!"\$%&\/=\?\*\`\~\^\\\|\'\+#<>{}\[\]]/'
Any help is appreciated !! Thanks