Anicky of Micropole Lyon Pole web
3/26/2016 - 11:07 PM

Check if the mail adress format is correct

Check if the mail adress format is correct

/**
 * Check if the mail adress format is correct
 * @param str
 * @returns boolean
 */
function isMailAdress(str) {
    //var pattern = /^(.*)@(.*)\.(.*)$/i;
    var pattern = /^([-\w~!$%^&*_=+}{\'?]+(?:\.[-\w~!$%^&*_=+}{\'?]+)*)@((?:[\w_][-\w_]*)(?:\.[-\w_]+)*)\.([\w]{2,}?)$/i;
    return pattern.test(str);
}