Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2021-06-30 13:19
Updated·2021-08-12 16:10
Flavor·Python

r"
^(?![^a-zA-Z0-9])(?:(?![.]{2,})[a-zA-Z0-9_\-.])+(?<![.])@(?:(?![^a-zA-Z0-9])(?:[a-zA-Z0-9_\-])+(?<![^a-zA-Z0-9])\.)+[a-zA-Z]{2,}$
"
gm
Open regex in editor

Description

email google/microsoft like

Submitted by Maxime Paris