Skip to content

Instantly share code, notes, and snippets.

@makmac213
Created July 29, 2015 09:18
Show Gist options
  • Save makmac213/875a18593931855e4e06 to your computer and use it in GitHub Desktop.
Save makmac213/875a18593931855e4e06 to your computer and use it in GitHub Desktop.
Check if string is an email.
function isEmail(email){
// http://www.w3.org/TR/html-markup/input.email.html
var emailReg = /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/
return emailReg.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment