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
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
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ignoring quotes, it will be \w+([-+.]\w+)*@\w+([-.]\w+ )*\.\w+([- .]\w+)*([, ;]\s*\w+([ -+.]\w+)*@ \w+([-.]\w +)*\.\w+([ -.]\w+)*)*
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks
Thanks for the assist, and the points.
Good luck & have a great day.
Good luck & have a great day.