Regex
Public
Match Email Address
A practical beginner regex for basic email-like text matching.
#regex
#email
#validation
#beginner
Regex
^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$
Notes
Email validation can be more complex than this. Use this for simple form checks, not final account verification.