Regular Expressions 101

Community Patterns

Email selection

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<=[ ;|,:]|^)([A-Z\.\-a-z1-9]+@[A-Za-z1-9]+?\.[A-Za-z1-9\.]+?)(?=[ ;|,:]|$)
/
gm

Description

Select emails from a string

Submitted by anonymous - a year ago