Yet another email regular expression that matches email addresses at a specific domain.
/^[A-Za-z0-9._%+-]+@yourdomain\.com$/g
Matches:
Non-matches:
- @yourdomain.com
- [email protected]
- [email protected]
Yet another email regular expression that matches email addresses at a specific domain.
/^[A-Za-z0-9._%+-]+@yourdomain\.com$/g