vote up 1 vote down star
1

I have the same expression in Javascript but it won't work in PHP for server side validation. Here's the code

if (ereg('/^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\\.([a-zA-Z])+([a-zA-Z])+/',$_POST['email-address']))
    echo "valid email";
else
    echo "invalid email";
flag

56% accept rate
Your regex appears to be in preg_match format rather than ereg format... most notably the leading and trailing / characters. – R. Bemrose Jan 21 at 16:11
Does your regex handle "+" in the name part? On first glance it looks like it doesn't. Theres a good article on handling emails as regex here regular-expressions.info/email.html – MrWiggles Jan 21 at 16:16
Great, another e-mail "validator" in regexes... :-( Gumbo's advice is good! BTW, the ([a-zA-Z])+([a-zA-Z])+ looks strange. And I wonder why you are doing so much captures and not using them. – PhiLho Jan 21 at 17:02

6 Answers

vote up 4 vote down check

use preg_match, not ereg. ereg regex strings do not use an enclosing slash character.

Also the double-backslash may not be necessary in a single-quoted string in PHP (not sure about that, though)

link|flag
vote up 0 vote down

I've now collated test cases from Cal Henderson, Dave Child, Phil Haack, Doug Lovell and RFC 3696. 158 test addresses in all.

I ran all these tests against all the validators I could find. The comparison is here: http://www.dominicsayers.com/isemail

I'll try to keep this page up-to-date as people enhance their validators. Thanks to Cal, Dave and Phil for their help and co-operation in compiling these tests and constructive criticism of my own validator.

People should be aware of the errata against RFC 3696 in particular. Three of the canonical examples are in fact invalid addresses. And the maximum length of an address is 254 or 256 characters, not 320.

link|flag
vote up 6 vote down

Don't use regular expressions to "validate" email addresses

link|flag
vote up 10 vote down

filter which comes with PHP:

if(!filter_var($email, FILTER_VALIDATE_EMAIL)) {

echo "E-mail is not valid";

} else {

echo "E-mail is valid";

}
link|flag
vote up -1 vote down

It could be because of the symbol you are using to concatenate the expressions (+).

Anyways you should try this one:

\w+([-+.']\w+)@\w+([-.]\w+).\w+([-.]\w+)*

link|flag
That's not concatenation, it means a character set must be included "once or more times". – The Wicked Flea Jan 21 at 16:13
vote up 3 vote down

I use the following. I also would run TRIM() on the input string before comparing it:

function is_email($string) {
  if (preg_match('/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/',$string)) {
    return true;
  } else {
    return false;
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.