I know there are a lot of questions on here about email validation and specific RegEx's. I'd like to know what the best practices are for validating emails with respect to having the [email protected]
trick (details here). My current RegExp for JavaScript validation is as follows, but it doesn't support the extra +
in the handle:
/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/
Are there any other services that support the extra +
? Should I allow a +
in the address or should I alter the RegEx to only allow it for an email with gmail.com
or googlemail.com
as the domain? If so, what would be the altered RegEx?
UPDATE:
Thanks to everyone for pointing out that +
is valid per the spec. I didn't know that and now do for the future. For those of you saying that its bad to even use a RegEx to validate it, my reason is completely based on a creative design I'm building to. Our client's design places a green check or a red X next to the email address input on blur of it. That icon indicates whether or not its a valid email address so I must use some JS to validate it then.