8
votes
What is the best regular expression for validating email addresses?
It depends on what you mean by best:
If your talking about catching every valid email address use the following:
(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:( …
