Skip to content

Instantly share code, notes, and snippets.

@alvinnguyen
Created October 26, 2015 03:24
Show Gist options
  • Save alvinnguyen/f596af44ab89a9d3eeb1 to your computer and use it in GitHub Desktop.
Save alvinnguyen/f596af44ab89a9d3eeb1 to your computer and use it in GitHub Desktop.
function validateEmail(email) {
var re = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
return re.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment