I have a form in my application that will fill using Unicode characters (Non English). As name field needs to fill just with letters, I have to detect numbers as an error. On the other hand, I don't know how can I write the exact regular expression that works on Unicode.
Please help me.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
The u modifier makes it safe to use on unicode strings |
|||||||||||||
|
|
I got this from a previous answer... but forget which one - its now in my snippet library...
|
|||
|
|

\dwill match numbers just fine. Have you tried using it to detect invalid input? – Jon Jul 6 '12 at 8:08