Link to home
Create AccountLog in
Avatar of KavyaVS
KavyaVS

asked on

Regular Expression for Email ID

Please give me a regular expression for Email Id that accepts #,numbers in the userID part.
Basically I need a regular expression that validates all kind of Email Id Possibilities.
ex:123sdf@domail.com #12ad@wgf.net


Thanks
ASKER CERTIFIED SOLUTION
Avatar of Asim Nazir
Asim Nazir
Flag of Pakistan image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
ignoring quotes, it will be \w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*([,;]\s*\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)*
SOLUTION
Avatar of HonorGod
HonorGod
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Avatar of KavyaVS
KavyaVS

ASKER

Thanks
Thanks for the assist, and the points.

Good luck & have a great day.