Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2023-03-01 12:27
Flavor·PCRE2 (PHP)

/
[-_a-zA-Z.+!%0-9]{2,}@[a-zA-Z0-9]{2,}\.[a-zA-Z.]{2,}
/
gm
Open regex in editor

Description

This piece of regex is a simple format verification for email addresses. It accepts only most common email addresses and it favors simplicity over exhaustivity, but should work for 99% of the cases. Based on this Stackoverflow thread : https://stackoverflow.com/a/60137352/14705619

Submitted by rnorm