vote up 0 vote down star

i like to check this email address with javascript and regex.

Beacuse of quotes and other signs.. there will be syntax error. i checked with firebug.

now, can anyone send me a possible solution to check this with javascript.

(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|
"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09
\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-
z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9]
[0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z
0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09
\x0b\x0c\x0e-\x7f])+)\])

Thanks.

flag

3  
Do not do that and see stackoverflow.com/questions/201323/… – kmkaplan Nov 5 at 11:26
Is there an email regex that's not very strict but filters out obvious errors, like entering a telephone number in an email field? – Andomar Nov 5 at 11:36
Andomar: ".@." i.e. check for the presence of a “@” and the presence of a character before and after it. – kmkaplan Nov 5 at 12:54

1 Answer

vote up -1 vote down

jQuery email validation

link|flag
It rejects valid mail addresses – kmkaplan Nov 5 at 20:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.