- \ / ~ * . ? % ( ) [ ] { } = + & # £ $ ; : @ ^ _ + ¬¬ – è é
I am not not sure whether we can put validation for these 2 characters è é .
Happy to get any help from your side.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted May 21, 2014, 11:30 AM
When I tried this code just now:
it returned True.
However, if I placed an accute accent over the 'u':
string text = "résúmé";
it returned False.
Note, though, that you'll need to use a-zA-Z0-9_ instead of \w. The latter seems to match all word characters (whether unaccented English letters or not) which is not what you want here.
Resmi SatishPosted May 23, 2014, 3:24 AM