Tools
Sign in
Login
Forum
email regex
Forum
>
Scripting
>
email regex
Matt Barth
posted
on October 20, 2014
at 4:42 PM
Matt Barth
posted
on October 20, 2014
at 4:42 PM
I know that the built in email validation is not that strong. Here is a piece of regex for those who need a bit stronger validation for their clients. It was pulled from the web seems to be working so far.
'[a-z0-9!#$%&\'*+/=?^_\'{|}~-]+(?:\\.[a-z0-9!#$%&\'*+/=?^_\'{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?');
Ivo Pescia
replied
on October 23, 2014
at 10:17 AM
Ivo Pescia
replied
on October 23, 2014
at 10:17 AM
cool!
Thomas Suter
replied
on November 5, 2014
at 11:25 AM
Thomas Suter
replied
on November 5, 2014
at 11:25 AM
Here's also an interesting article about
email reg-ex patterns
.
Please
sign in
to add a reply
About this site
|
Terms of use
|
Privacy statement
|
Contact us
© 2025 Appway AG. All Rights Reserved.
'[a-z0-9!#$%&\'*+/=?^_\'{|}~-]+(?:\\.[a-z0-9!#$%&\'*+/=?^_\'{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?');