bboyle / html5-constraint-validation-API

A jQuery polyfill for the HTML5 constraint validation API
MIT License
3 stars 1 forks source link

update email regexp #18

Open bboyle opened 9 years ago

bboyle commented 9 years ago

https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address

The following JavaScript- and Perl-compatible regular expression is an implementation of the above definition.

/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/