JSFiddle - React, Tailwind, and code Playground
by micmic
JavaScript
/* VALIDATION EMAIL PAR REGEX */
var email = "[email protected]";
var regex = /^([a-z0-9.-_]+)@([a-z.-_]+)\.([a-z]{2,6})$/;
if (regex.test(email)) {
alert("Email valide \nNom : " + RegExp.$1 + "\nDomaine : " + RegExp.$2 + "\nExtension : " + RegExp.$3);
} else {
alert('Adresse e-mail invalide !');
}