Skip to content

Instantly share code, notes, and snippets.

@carlosasin
Created August 21, 2013 07:49
Show Gist options
  • Save carlosasin/6291464 to your computer and use it in GitHub Desktop.
Save carlosasin/6291464 to your computer and use it in GitHub Desktop.
JS - Check correct Mail using pattern
// Check if mail is correct (leters @ leters . leters(2-4))
// @input str string to check
// @return bool
function check_mail(str) {
var ml = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (str != undefined && str.match(ml)) return true;
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment