/ Published in: Regular Expression
URL: http://www.regular-expressions.info/email.html
This regular expression will match almost all valid email addresses. Omits email addresses containing double-quotes and square brackets, which while valid according to RFC 2822, are almost never used.
Expand |
Embed | Plain Text
[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
You need to login to post a comment.
