Skip to content

Instantly share code, notes, and snippets.

@aybabtme
Created December 8, 2012 00:29
Show Gist options
  • Save aybabtme/4237807 to your computer and use it in GitHub Desktop.
Save aybabtme/4237807 to your computer and use it in GitHub Desktop.
Regex for valid emails (RFC 2322) + minimum 2 char for top-level domain
var email_validator = new RegExp("^[\w!#$%&'*+/=?`{|}~^-]+(?:\.[!#$%&'*+/=?`{|}~^-]+)*@(?:[A-Z0-9-]+\.)+[A-Z]{2,6}$");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment