我需要一个正则表达式来匹配此电话号码模式:它总是以 07 开头然后后跟此范围 (3-9) 中的数字并且必须是 11 个字符例如:079028481170779693820907302819248
1 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
Try this, it should work.
"07[3-9][0-9]{8}"
What this mean is,
07 - it tries to find literally 07
[3-9] - then followed by 3 to 9, only one time
[0-9] - then followed by 0 to 9
{8} - text previous to this should has at least 8 characters.
添加回答
举报
0/150
提交
取消