Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

utf-8 character properties:

/\p{L}/u
share|improve this answer
it's not working ! thanks anyway – sorin Jan 29 '12 at 21:29
What have you done with it? This isn't finished code, this is to get you on your way.... The expression would probably be /^\PL*$/u', assuming you are using utf-8. Also, we don't know what you mean with 'to escape characters like Ö,ä...', escaping how and what for? – Wrikken Jan 29 '12 at 21:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.