Regular Expressions 101

Community Patterns

Check validity email address

0

Regular Expression
ECMAScript (JavaScript)

/
^(([^<>()\[\]\.,;:\s@\"]{1,64}(\.[^<>()\[\]\.,;:\s@\"]{1,64})*)|(\".{1,64}\"))@(([^<>()\.,;\s@\"]+\.{0,1})+[^<>()\.,;:\s@\"]{2,})$
/
i

Description

Follow the rules found in https://www.wikiwand.com/en/Email_address. Check all the address given to check if the addresses are valid or not.

Submitted by anonymous - 4 years ago