标签: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