Web 前端开发 让前端飞

2018 手机号正则

2018-03-23  本文已影响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/

上一篇下一篇

猜你喜欢

热点阅读