Jump to content

Email Validation


3raser

Recommended Posts

That regex will accept

"hey @twitteruser, shut up.everything you say is stupid and wrong"

as an email address. Which it clearly isn't. Find yourself a different regex, and when you do so that might fix your problem. And if not then we'll need to see the regex and your code.

Link to comment
https://forums.phpfreaks.com/topic/269588-email-validation/#findComment-1385830
Share on other sites

If you're just trying to validate user entered emails (rather than extract them from text or something) then I'd recommend you just use PHP's filter_var function with the email filter rather than try and re-invent the wheel writing your own regex.

Link to comment
https://forums.phpfreaks.com/topic/269588-email-validation/#findComment-1385834
Share on other sites

rather than try and re-invent the wheel writing your own regex.

Because I just love bringing this up, linky. The wheel is a complicated beast.

 

Also worth noting: if a regex is too restrictive and a user doesn't want to enter a real address, they can very easily just put in "[email protected]". Totally valid. That's why places that need a real email address typically send a confirmation message.

Link to comment
https://forums.phpfreaks.com/topic/269588-email-validation/#findComment-1385856
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.