Regex For Email Addresses Using A Specific Domain

Yet another email regular expression that matches email addresses at a specific domain.

/^[A-Za-z0-9._%+-]+@yourdomain\.com$/g

Matches:

Non-matches:

See Also:

Regex Is Copied!