1 // 使用正则写一个验证邮箱的表达式 2 3 let str = '[email protected]' 4 let str2 = '[email protected]' 5 let str3 = '[email protected]' 6 const emailReg = /^[\w-]+@\w+(\.\w+)*\.[a-z]+$/ 7 8 /**分析: 9 * + {1,} 一个或多个 10 * * {0,} 零个或多个 11 * 12 * 字母 数字 下划线开头_ 连号- 开头 ^[\w-]+ 13 * 14 * @ @ 15 * 紧接着 必须有 字母 数字 下划线_ \w+ 16 * 17 * 中间可有可无 .com (\.\w+)* 18 * 19 * 最后以 .cn 结尾 \.[a-z]+$ 20 * 21 * */ 22 console.log(str,emailReg.test(str)); 23 console.log(str2,emailReg.test(str2)); 24 console.log(str3,emailReg.test(str3));
标签:console,正则表达式,str2,emailReg,str3,简单,test,邮箱,com From: https://www.cnblogs.com/grblog/p/16728097.html