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). For PHP, there is [Validate an E-Mail Address with PHP, the Right Way][1] 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.". See also [Validating Email Addresses][2], including the comments. Or [Comparing E-mail Address Validating Regular Expressions][3]. [1]: http://www.linuxjournal.com/article/9585 [2]: http://worsethanfailure.com/Articles/Validating_Email_Addresses.aspx [3]: http://fightingforalostcause.net/misc/2006/compare-email-regex.php