What is the best regular expression for validating email addresses? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T00:28:02Zhttp://stackoverflow.com/feeds/question/201323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses38What is the best regular expression for validating email addresses?acrosman2008-10-14T14:14:34Z2009-11-21T11:03:49Z
<p>Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is:</p>
<pre><code>^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$
</code></pre>
<p>I use this in several PHP programs, and it works most of the time. However, from time to time I get contacted by someone that is having trouble with a site that uses it, and I end up having to make some adjustment (most recently I realized that I wasn't allowing 4-character TLDs).</p>
<p><em>What's the best regular expression you have or have seen for validating emails?</em></p>
<p>I've seen several solutions that use functions that use several shorter expressions, but I'd rather have one long complex expression in a simple function instead of several short expression in a more complex function.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201329#2013293Answer by chris for What is the best regular expression for validating email addresses?chris2008-10-14T14:16:34Z2008-10-14T14:16:34Z<p>There's a good discussion here: <a href="http://www.regular-expressions.info/email.html" rel="nofollow">http://www.regular-expressions.info/email.html</a></p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201336#2013363Answer by Hojou for What is the best regular expression for validating email addresses?Hojou2008-10-14T14:17:44Z2008-10-14T14:17:44Z<p>I use</p>
<pre><code>\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
</code></pre>
<p>Which is the one used in ASP.NET by the RegularExpressionValidator.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201337#20133725Answer by Christian Vest Hansen for What is the best regular expression for validating email addresses?Christian Vest Hansen2008-10-14T14:17:59Z2009-03-21T21:19:05Z<p>Don't know about best, but <a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">this one</a> is at least correct, as long as the addresses have their comments stripped and replaced with whitespace.</p>
<p>Seriously. You should use an already written library for validating emails. The best way is probably to just send a verification e-mail to that address.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201340#20134012Answer by Draemon for What is the best regular expression for validating email addresses?Draemon2008-10-14T14:18:58Z2008-10-14T14:18:58Z<p>There are plenty examples of this out on the net (and I think even one that fully validates the RFC - but it's tens/hundreds of lines long if memory serves). People tend to get carried away validating this sort of thing. Why not just check it has an @ and at least one . and meets some simple minimum length. It's trivial to enter a fake email and still match any valid regex anyway. I would guess that false positives are better than false negatives.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201358#2013583Answer by Kon M for What is the best regular expression for validating email addresses?Kon M2008-10-14T14:23:11Z2008-10-14T14:23:11Z<p>I never bother creating with my own regular expression, because chances are that someone else has already come up with a better version. I always use <a href="http://regexlib.com/Search.aspx" rel="nofollow">regexlib</a> to find one to my liking.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201378#20137847Answer by bortzmeyer for What is the best regular expression for validating email addresses?bortzmeyer2008-10-14T14:26:43Z2009-02-22T21:44:37Z<p>There is no good (and realistic, see
Christian Vest Hansen's excellent reference) regular expression for this problem. The grammar (specified in RFC 5322) is too complicated for that. Use a real parser or, better, validate by trying (to send a message).</p>
<p>For PHP, there is <a href="http://www.linuxjournal.com/article/9585" rel="nofollow">Validate an E-Mail Address with PHP, the Right Way</a> for which I quote "There is some danger that common usage and widespread sloppy coding will establish a de facto standard for e-mail addresses that is more restrictive than the recorded formal standard.".</p>
<p>See also <a href="http://worsethanfailure.com/Articles/Validating_Email_Addresses.aspx" rel="nofollow">Validating Email Addresses</a>, including the comments. Or <a href="http://fightingforalostcause.net/misc/2006/compare-email-regex.php" rel="nofollow">Comparing E-mail Address Validating Regular Expressions</a>.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201427#20142741Answer by Just Some Guy for What is the best regular expression for validating email addresses?Just Some Guy2008-10-14T14:36:14Z2008-10-14T14:36:14Z<p>For the love of SMTP, <em>please</em> remember that email address may contain a plus sign, which is typically used to add tags to an address. For example, foo@example.com, foo+stackoverflow@example.com, and foo+acrosman@example.com all resolve to the same account. This allows recipients to sort their email based on the address it was sent to.</p>
<p>Your original regexp fails to allow the humble plus sign. For many of us, that means that we wouldn't register with your service - and probably won't stop to tell you why.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201447#20144711Answer by Andy Lester for What is the best regular expression for validating email addresses?Andy Lester2008-10-14T14:42:25Z2008-10-14T14:42:25Z<p>It all depends on how accurate you want to be. For my purposes, where I'm just trying to keep out things like "bob @ aol.com" or "steve" or "mary@aolcom", I use</p>
<pre><code>/^\S+@\S+\.\S+$/
</code></pre>
<p>Sure, it will match things that aren't valid email addresses, but it's a matter of playing the 90/10 rule.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201688#2016884Answer by PhiLho for What is the best regular expression for validating email addresses?PhiLho2008-10-14T15:38:36Z2008-10-14T15:38:36Z<p>There is not one which is really usable.<br />
I discuss some issues in my <a href="http://stackoverflow.com/questions/161342/is-there-a-php-library-for-email-address-validation#161582" rel="nofollow" title="Is there a php library for email address validation?">answer to Is there a php library for email address validation?</a>, it is discussed also in <a href="http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard" rel="nofollow" title="Regexp recognition of email address hard?">Regexp recognition of email address hard?</a></p>
<p>In short, don't expect a single, usable regex to do a proper job. And the best regex will validate the syntax, not the validity of an e-mail (jhohn@example.com is correct but it will probably bounce...).</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201854#2018546Answer by DOK for What is the best regular expression for validating email addresses?DOK2008-10-14T16:19:04Z2008-10-14T16:19:04Z<p>While deciding which characters are allowed, please remember your apostrophed and hyphenated friends. I have no control over the fact that my company generates my email address using my name from the HR system. That includes the apostrophe in my last name. I can't tell you how many times I have been blocked from interacting with a website by the fact that my email address is "invalid". </p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201905#2019054Answer by adnam for What is the best regular expression for validating email addresses?adnam2008-10-14T16:35:44Z2008-10-14T16:35:44Z<p><a href="http://www.iamcal.com/" rel="nofollow">Cal Henderson</a> (Flickr) wrote an article called <a href="http://www.iamcal.com/publish/articles/php/parsing_email/" rel="nofollow">Parsing Email Adresses in PHP</a> and shows how to do proper RFC (2)822-compliant Email Address parsing. You can also get the source code in <a href="http://code.iamcal.com/php/rfc822/" rel="nofollow">php</a>, python and ruby which is <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="nofollow">cc licensed</a>.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201932#2019320Answer by TheAlbear for What is the best regular expression for validating email addresses?TheAlbear2008-10-14T16:44:18Z2008-10-14T16:44:18Z<p>I find the standard email validation from Visual Studio works fine for validating the user input, just helps cut down on use typos, but invalid email can stil be entered. </p>
<pre><code>\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
</code></pre>
<p>But i would always recomend performing a double optin for registration forms, so send the use an email and get them to click on link to active. </p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201997#20199718Answer by Daniel Cassidy for What is the best regular expression for validating email addresses?Daniel Cassidy2008-10-14T17:01:49Z2008-10-14T17:01:49Z<p>Don't.</p>
<p>You are guaranteed to get this wrong. Your users will be sad. You'll be sad.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/202312#2023122Answer by bmb for What is the best regular expression for validating email addresses?bmb2008-10-14T18:40:53Z2008-10-14T18:40:53Z<p>Seems like this question gets asked a lot. I've worked at 4 different companies where someone at the help desk got yelled at by someone named O'Malley or O'Brien or some other e-mail address with an apostrophe. I'm not sure what the "best" solution is, but save yourself some hassle and accept an apostrophe.</p>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/202528#20252826Answer by olavk for What is the best regular expression for validating email addresses?olavk2008-10-14T19:40:10Z2008-10-14T19:40:10Z<p>This question is asked a lot, but I think you should step back and ask yourself <em>why</em> you want to validate email adresses syntactivally? What is the benefit really?</p>
<ul>
<li>It will not catch common typos.</li>
<li>It does not prevent people from entering invalid or made-up emails addresses, or entering someone elses address. </li>
</ul>
<p>If you want to validate that an email is correct, you have no choice than to send an confirmation email and have the user reply to that. In many cases you will <em>have</em> to send a confirmation mail anyway for security reasons or for ethical reasons (so you cannot e.g sign someone up to a service against their will).</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/267670#2676701Answer by Joseph Yee for What is the best regular expression for validating email addresses?Joseph Yee2008-11-06T04:48:18Z2008-11-06T04:48:18Z<p>Strange that you "cannot" allow 4 characters TLDs. You are banning people from <em>.info</em> and <em>.name</em>, and the length limitation stop <em>.travel</em> and <em>.museum</em>, but yes, they are less common than 2 characters TLDs and 3 characters TLDs.</p>
<p>You should allow uppercase alphabets too. Email systems will normalize the local part and domain part.</p>
<p>For your regex of domain part, domain name cannot starts with '-' and cannot ends with '-'. Dash can only stays in between.</p>
<p>If you used the PEAR library, check out their mail function (forgot the exact name/library). You can validate email address by calling one function, and it validates the email address according to definition in RFC822.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/267679#2676790Answer by cbp for What is the best regular expression for validating email addresses?cbp2008-11-06T04:56:39Z2008-11-06T04:56:39Z<p>We have used <a href="http://www.aspnetmx.com/" rel="nofollow">http://www.aspnetmx.com/</a> with a degree of success for a few years now. You can choose the level you want to validate at (e.g. syntax check, check for the domain, mx records or the actual email).</p>
<p>For front-end forms we generally verify that the domain exists and the syntax is correct, then we do stricter verification to clean out our database before doing bulk mail-outs.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/407102#4071027Answer by davcar for What is the best regular expression for validating email addresses?davcar2009-01-02T15:29:28Z2009-01-02T15:29:28Z<p>The email addresses I want to validate are going to be used by an ASP.NET web application using the System.Net.Mail namespace to send emails to a list of people. So, rather than using some very complex regular expression, I just try to create a MailAddress instance from the address. The MailAddress construtor will throw an exception if the address is not formed properly. This way, I know I can at least get the email out of the door. Of course this is server-side validation but at a minimum you need that anyway.</p>
<pre><code>protected void emailValidator_ServerValidate(object source, ServerValidateEventArgs args)
{
try
{
var a = new MailAddress(txtEmail.Text);
}
catch (Exception ex)
{
args.IsValid = false;
emailValidator.ErrorMessage = "email: " + ex.Message;
}
}
</code></pre>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/532972#53297221Answer by Dominic Sayers for What is the best regular expression for validating email addresses?Dominic Sayers2009-02-10T16:13:28Z2009-02-26T16:46:25Z<p>I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell, RFC5322 and RFC 3696. 222 test addresses in all.</p>
<p>I ran all these tests against all the validators I could find. The comparison is here: <a href="http://www.dominicsayers.com/isemail" rel="nofollow">http://www.dominicsayers.com/isemail</a></p>
<p>I'll try to keep this page up-to-date as people enhance their validators. Thanks to Cal, Dave, Paul and Phil for their help and co-operation in compiling these tests and constructive criticism of <a href="http://code.google.com/p/isemail/source/browse/trunk/is%5Femail.php" rel="nofollow">my own validator</a>.</p>
<p>People should be aware of the <a href="http://www.rfc-editor.org/errata%5Fsearch.php?rfc=3696" rel="nofollow">errata against RFC 3696</a> in particular. Three of the canonical examples are in fact invalid addresses. And the maximum length of an address is 254 or 256 characters, <strong>not</strong> 320.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/670032#6700321Answer by Anonymous for What is the best regular expression for validating email addresses?Anonymous2009-03-21T21:28:23Z2009-03-21T21:28:23Z<p>This question is covered in "Mastering Regular Expressions" by Jeffrey Friedl.</p>
<p>I won't quote the regex here, because it's really huge.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/719543#7195432Answer by Person for What is the best regular expression for validating email addresses?Person2009-04-05T19:39:31Z2009-04-06T01:03:40Z<p>It depends on what you mean by best:
If your talking about catching every valid email address use the following:</p>
<pre><code>(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:
\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(
?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[
\t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\0
31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\
](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+
(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:
(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)
?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\
r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[
\t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)
?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t]
)*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[
\t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*
)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)
*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+
|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r
\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:
\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t
]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031
]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](
?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?
:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?
:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?
:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?
[ \t]))*"(?:(?:\r\n)?[ \t])*)*:(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|
\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>
@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"
(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?
:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[
\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-
\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(
?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;
:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([
^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\"
.\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\
]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\
[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\
r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]
|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \0
00-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\
.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,
;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?
:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[
^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]
]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)(?:,\s*(
?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(
?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[
\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t
])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t
])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?
:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|
\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:
[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\
]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)
?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["
()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)
?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>
@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[
\t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,
;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:
\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\[
"()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])
*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])
+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\
.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(
?:\r\n)?[ \t])*))*)?;\s*)
</code></pre>
<p>(<a href="http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html</a>)
If your looking for something simpler but that will catch most valid email addresses try something like: </p>
<pre><code>"^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$"
</code></pre>
<p>EDIT:
From the link: "This regular expression will only validate addresses that have had any comments stripped and replaced with whitespace (this is done by the module)."
- Chas. Owens</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/885569#8855690Answer by njappboy for What is the best regular expression for validating email addresses?njappboy2009-05-19T23:38:41Z2009-05-19T23:38:41Z<p>There is a great little site that has various regular expressions and a testing environment, regexlib.com . </p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/902121#9021210Answer by chaos for What is the best regular expression for validating email addresses?chaos2009-05-23T18:22:34Z2009-05-23T18:22:34Z<p>You could use the one employed by the jQuery Validation plugin:</p>
<pre><code>/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i
</code></pre>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1044515#10445150Answer by gbacon for What is the best regular expression for validating email addresses?gbacon2009-06-25T15:15:07Z2009-06-25T15:15:07Z<p>For a vivid demonstration, the following monster is pretty good but still does not correctly recognize all syntactically valid email addresses: it recognizes nested comments up to four levels deep.</p>
<p>This is a job for a parser, but even if an address is syntactically valid, it still may not be deliverable. Sometimes you have to resort to the hillbilly method of "Hey, y'all, watch ee-us!"</p>
<pre><code>// derivative of work with the following copyright and license:
// Copyright (c) 2004 Casey West. All rights reserved.
// This module is free software; you can redistribute it and/or
// modify it under the same terms as Perl itself.
// see http://search.cpan.org/~cwest/Email-Address-1.80/
private static string gibberish = @"
(?-xism:(?:(?-xism:(?-xism:(?-xism:(?-xism:(?-xism:(?-xism:\
s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^
\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))
|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+
|\s+)*[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]+(?-xism:(?-xism:\
s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^
\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))
|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+
|\s+)*)|(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(
?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?
:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x
0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*<DQ>(?-xism:(?-xism:[
^\\<DQ>])|(?-xism:\\(?-xism:[^\x0A\x0D])))+<DQ>(?-xism:(?-xi
sm:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xis
m:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\
]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\
s*)+|\s+)*))+)?(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?
-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:
\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[
^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*<(?-xism:(?-xi
sm:(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^(
)\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(
?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))
|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*(?-xism:[^\x00-\x1F\x7F()<
>\[\]:;@\,.<DQ>\s]+(?:\.[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]
+)*)(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))
|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:
(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s
*\)\s*))+)*\s*\)\s*)+|\s+)*)|(?-xism:(?-xism:(?-xism:\s*\((?
:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x
0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xi
sm:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*
<DQ>(?-xism:(?-xism:[^\\<DQ>])|(?-xism:\\(?-xism:[^\x0A\x0D]
)))+<DQ>(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\
]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-x
ism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+
)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*))\@(?-xism:(?-xism:(?-xism:(
?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?
-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^
()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s
*\)\s*)+|\s+)*(?-xism:[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]+(
?:\.[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]+)*)(?-xism:(?-xism:
\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[
^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+)
)|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)
+|\s+)*)|(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:
(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((
?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\
x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*\[(?:\s*(?-xism:(?-x
ism:[^\[\]\\])|(?-xism:\\(?-xism:[^\x0A\x0D])))+)*\s*\](?-xi
sm:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:
\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(
?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+
)*\s*\)\s*)+|\s+)*)))>(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-
xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\
s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^
\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*))|(?-xism:(?-x
ism:(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^
()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*
(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D])
)|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*(?-xism:[^\x00-\x1F\x7F()
<>\[\]:;@\,.<DQ>\s]+(?:\.[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s
]+)*)(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+)
)|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism
:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\
s*\)\s*))+)*\s*\)\s*)+|\s+)*)|(?-xism:(?-xism:(?-xism:\s*\((
?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\
x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-x
ism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)
*<DQ>(?-xism:(?-xism:[^\\<DQ>])|(?-xism:\\(?-xism:[^\x0A\x0D
])))+<DQ>(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\
\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-
xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)
+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*))\@(?-xism:(?-xism:(?-xism:
(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(
?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[
^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\
s*\)\s*)+|\s+)*(?-xism:[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]+
(?:\.[^\x00-\x1F\x7F()<>\[\]:;@\,.<DQ>\s]+)*)(?-xism:(?-xism
:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:
[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+
))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*
)+|\s+)*)|(?-xism:(?-xism:(?-xism:\s*\((?:\s*(?-xism:(?-xism
:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\(
(?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A
\x0D]))|)+)*\s*\)\s*))+)*\s*\)\s*)+|\s+)*\[(?:\s*(?-xism:(?-
xism:[^\[\]\\])|(?-xism:\\(?-xism:[^\x0A\x0D])))+)*\s*\](?-x
ism:(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism
:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:\s*(?-xism:(?-xism:
(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|)+)*\s*\)\s*))
+)*\s*\)\s*)+|\s+)*))))(?-xism:\s*\((?:\s*(?-xism:(?-xism:(?
>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0D]))|(?-xism:\s*\((?:
\s*(?-xism:(?-xism:(?>[^()\\]+))|(?-xism:\\(?-xism:[^\x0A\x0
D]))|)+)*\s*\)\s*))+)*\s*\)\s*)*)"
.Replace("<DQ>", "\"")
.Replace("\t", "")
.Replace(" ", "")
.Replace("\r", "")
.Replace("\n", "");
private static Regex mailbox =
new Regex(gibberish, RegexOptions.ExplicitCapture);
</code></pre>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1086376#10863760Answer by nazmul hasan for What is the best regular expression for validating email addresses?nazmul hasan2009-07-06T10:29:14Z2009-07-06T10:29:14Z<p>this is one of the regex for email</p>
<p>^((([a-z]|\d|[!#\$%&'*+-\/=\?\^<em><code>{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_</code>{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)</em>)|((\x22)((((\x20|\x09)<em>(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))</em>(((\x20|\x09)<em>(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|.|</em>|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])<em>([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))).)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|.|</em>|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))).?$</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1267224#12672240Answer by AgentHunt for What is the best regular expression for validating email addresses?AgentHunt2009-08-12T16:23:15Z2009-08-12T16:23:15Z<p>I am using this regex in .NET to validate email address.</p>
<p>^([A-Za-z0-9]|\{\}~]+)*)[\w,=!\-#|\$%\^&\*\+/\?{}~%5D">A-Za-z0-9@(?:[A-Za-z0-9-]+.)+[a-zA-Z]{2,9}$</p>
<p>One issue with it though..In the local name before the @ symbol, it accepts multiple periods in sequence.For example, ab...c@gmail.com.</p>
<p>Does anyone know how I can fix that and yet keep the rest of the logic intact?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1329339#13293390Answer by Dimitris Andreou for What is the best regular expression for validating email addresses?Dimitris Andreou2009-08-25T16:19:28Z2009-08-25T16:19:28Z<p>I don't believe the claim made by bortzmeyer, above, that "The grammar (specified in RFC 5322) is too complicated for that" (to be handled by a regular expression).</p>
<p>Here is the grammar: (<a href="http://tools.ietf.org/html/rfc5322#section-3.4.1" rel="nofollow">http://tools.ietf.org/html/rfc5322#section-3.4.1</a>)</p>
<p>addr-spec = local-part "@" domain
local-part = dot-atom / quoted-string / obs-local-part
domain = dot-atom / domain-literal / obs-domain
domain-literal = [CFWS] "[" *([FWS] dtext) [FWS] "]" [CFWS]
dtext = %d33-90 / ; Printable US-ASCII
%d94-126 / ; characters not including
obs-dtext ; "[", "]", or "\"</p>
<p>Assuming that dot-atom, quoted-string, obs-local-part, obs-domain are themselves regular languages, this is a very simple grammar. Just replace the local-part and domain in the addr-spec production with their respective productions, and you have a regular language, directly translatable to a regular expression.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1610200#16102000Answer by spig for What is the best regular expression for validating email addresses?spig2009-10-22T21:54:40Z2009-10-22T21:54:40Z<p>One simple regular expression which would at least not reject any valid email address would be checking for something, followed by an @ sign and then something followed by a period and at least 2 somethings. It won't reject anything, but after reviewing the spec I can't find any email that would be valid and rejected.</p>
<p>email =~ /^[^@]+@[^@]+.[^@]{2}.*$/</p>
<p>This has the side effect of making sure that multiple @ symbols are not in the email as well.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/1771483#17714830Answer by MichaelRushton for What is the best regular expression for validating email addresses?MichaelRushton2009-11-20T16:05:42Z2009-11-21T11:03:49Z<pre><code>/^(?=.{5,254})(?:(?:\"[^\"]{1,62}\")|(?:(?!\.)(?!.*\.[.@-])[a-z0-9!#$%&'*+\/=?^_`{|}~^.-]{1,64}))@(?:(?:\[(?:(?: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])\])|(?:(?!-)(?!.*-\$)(?!.*-\.)(?!.*[^n]--)(?!.*[^x]n--)(?!n--)(?!.*[^.]xn--)(?:[a-z0-9-]{1,63}\.){1,127}(?:[a-z0-9-]{1,63})))$/i
</code></pre>
<p>Follows the RFC 5322 standard. Allows for internationalized domains.</p>