Regular Expressions 101

Community Patterns

Email Verification

1

Regular Expression
PCRE2 (PHP >=7.3)

/
(([^<>()\[\]\\.,;:\s+@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))
/
mg

Description

PHP REGEX to verify an email.l

Submitted by anonymous - 3 years ago