Regular Expressions 101

Community Patterns

Email Address Validation

1

Regular Expression
Python

r"
[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}
"
gm

Description

RegEx pattern to match email addresses. Visit the detailed tutorial to learn more.

Submitted by Minh Vu - 5 months ago (Last modified 5 months ago)