I need a regex to exclude certain characters such as 'รง' and also to check '@' sign is present. Can someone help?
I am using jquery to do client-side validation using the following expression:
(/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[\w-]{2,4}$/)
|
I need a regex to exclude certain characters such as 'รง' and also to check '@' sign is present. Can someone help? I am using jquery to do client-side validation using the following expression:
|
||||
|
Chiefly:
Use http://en.wikipedia.org/wiki/Email_address#Syntax for a better regular expression. |
||||
|
|
çis a legal character in an email address. – BalusC Jul 25 '11 at 20:39