Possible Duplicate:
What is the best regular expression for validating email addresses?
I'm using a form which ask for email address. I used regular expression for it as
.*@.*\..*
But it is not working fine for some of my test email id like
dsrasdf@@@fer@hbdf.vjif
Any one provide me regular expression for the email validation in asp.net or can i use any other method for it.
Please give your suggestions.
.in regular expressions. Note that....@......also matches your expression. – Michael Sep 7 '10 at 9:26.should only be done with caution and is, in this case, still wrong. IMHO, this validation is neither "too loose" nor "too strict" since the strings are neither a superset nor a subset of the real valid email addresses. It's just wrong. – Michael Sep 7 '10 at 9:57