Skip to content

Instantly share code, notes, and snippets.

@titovanton
Last active February 19, 2019 07:23
Show Gist options
  • Save titovanton/b6f15b7b87046ff7c16fd657dfa9dd24 to your computer and use it in GitHub Desktop.
Save titovanton/b6f15b7b87046ff7c16fd657dfa9dd24 to your computer and use it in GitHub Desktop.
var ptn = /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9_.-]+\.[a-zA-Z]+$/;
var email = 'mail@example.com';
ptn.test(email); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment