show/hide this revision's text 3 http://fightingforalostcause.net/misc/2006/compare-email-regex.php

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 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, including the comments. Or Comparing E-mail Address Validating Regular Expressions.

show/hide this revision's text 2 Emphasize that my advice is for email addresses, not a general remak on REs

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 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, including the comments.

show/hide this revision's text 1

There is no good (and realistic, see Christian Vest Hansen's excellent reference) regular expression. The grammar 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 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, including the comments.