Check whether an email address has a conventional local-part and domain shape.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The pattern checks a simplified local-part, at sign, and dot-separated domain labels with whole-input anchors. It validates syntax only and does not query DNS or deliver mail.
standard
Email Regex (standard):
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
Standard email validation: alphanumeric with common special chars
Usage: new RegExp(pattern) or /pattern/i for case-insensitive
Signup forms, contact imports, and mail API prechecks use email patterns.