2018 手机号正则

对比下图

2018 手机号正则_第1张图片
image.png

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

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

正则站

https://regexper.com/

你可能感兴趣的:(2018 手机号正则)