Allowing Non-latin Characters With Regex
Possible Duplicate: Regular expression to match non-english characters? I am using this regex to limit some characters. I wanted to change this to allow all latin and non-latin
Solution 1:
You can use XRegExp
. This supports Unicode.
Solution 2:
You will need to work with unicode values. Please take a look at this previous SO thread for more information.
Post a Comment for "Allowing Non-latin Characters With Regex"