码迷,mamicode.com
首页 > 其他好文 > 详细

区号+座机号+分机号正则匹配规则

时间:2020-03-25 12:08:26      阅读:1144      评论:0      收藏:0      [点我收藏+]

标签:regex   one   console   hone   验证   OLE   exp   规则   fun   

 注意:区号验证3-4位数字,中间座机号码验证7-8位数字, 后面分机号验证1-5位数字。
 regFun(){ let phone
= 021-88888999-1234; //你输入的电话号码 let regexp=/^((\d{3,4}\-)|)\d{7,8}(|([-\u8f6c]{1}\d{1,5}))$/; //正则 if(regexp.test(phone)){ console.log(phone+‘---验证通过‘) }else{ console.log(phone+‘---验证未通过‘) } }

 

区号+座机号+分机号正则匹配规则

标签:regex   one   console   hone   验证   OLE   exp   规则   fun   

原文地址:https://www.cnblogs.com/kevin0312/p/12565096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!