2018 手机号正则

作者: 矮子高 | 来源:发表于2018-03-23 10:00 被阅读0次

对比下图

image.png

现在还没有 92和98的手机号,之后会有的

// 手机号
const mobileRule = /(?:^1[3456789]|^9[28])\d{9}$/
image.png
// 座机
 const phoneRule = /^[0]?\d{2,3}[- ]?\d{7,8}$/
image.png
// 座机及手机
const telephoneRule = /^[0]?\d{2,3}[- ]?\d{7,8}$|(?:^1[3456789]|^9[28])\d{9}$/
image.png

正则站

https://regexper.com/

相关文章

网友评论

    本文标题:2018 手机号正则

    本文链接:https://www.haomeiwen.com/subject/hqptcftx.html