Community Patterns

Community Library Entry

1

Regular Expression
Created·2024-04-29 16:51
Updated·2024-04-29 16:53
Flavor·PCRE2 (PHP)

/
^([a-z][a-z0-9_.]+@([a-z0-9-]+\.)+[a-z]{2,6}(,\s{0,1}){0,1})+$
/
Open regex in editor

Description

  • Multiple emails separated with comma
  • Only one space allowed after comma
  • Avoid blank spaces between commas
Submitted by CsarEspejel