Possible Duplicate:
Using a regular expression to validate an email address
i am looking to have a reg ex for email validation which should support the following -
- Uppercase and lowercase English letters (a–z, A–Z)
- Digits 0 to 9
- Characters !#$%&'*+-/=?^_`{|}~
- Character . (dot, period, full stop) provided that it is not the first or last character, and provided also that it does not appear two or more times consecutively (e.g. abhi..shekk@example.com).
- Special characters are allowed with restrictions including:
- Space and "(),:;<>@[]
I need to validate the email ID using javascript method on form submission ?
Thanks,
Abhishek