使用正则表达式验证邮箱格式
Posted crazycode2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用正则表达式验证邮箱格式相关的知识,希望对你有一定的参考价值。
代码:
var reg = /^(w)+(.w+)*@(w)+((.w{2,3}){1,3})$/; var email = "[email protected]"; console.log(reg.test(email)); // true
.
以上是关于使用正则表达式验证邮箱格式的主要内容,如果未能解决你的问题,请参考以下文章