js如何利用正则表达式实现邮箱验证,下面web建站小编给大家详细介绍一下具体实现代码!
邮箱格式说明:
邮箱域至少有一个“.”和两个单词,但是不以“_”或“-”开头或者结尾,包含特殊符号的。 再严格点那么最后的顶级域至少要2个字母。
正则表达验证:
let reg = /^[a-zA-Z0-9]+([-_.][A-Za-zd]+)*@([a-zA-Z0-9]+[-.])+[A-Za-zd]{2,5}$/ console.log(reg.test('7dadi.com')) //false 不是邮箱 console.log(reg.test('12345@qq.com')) //true是邮箱(纯数字的QQ邮箱) console.log(reg.test('ipkd@163.com')) //true是邮箱(纯字母) console.log(reg.test('web123@163.com')) //true是邮箱(字母数字混合) console.log(reg.test('ipkd.cn@163.com')) //true是邮箱(带点的) console.log(reg.test('ipkd_123@163.com')) //true是邮箱(带下划线) console.log(reg.test('ipkd-123@163.com')) //true是邮箱(带连接线)
上面是“js如何利用正则表达式实现邮箱验证(验证邮箱格式)”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3656.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!