正则表达式:匹配以 NNN 开头且有 10 个号码的电话号码
我需要匹配以下电话号码:
以 010 或 012 或 016 或 019 开头
恰好由 10 个号码组成
您能帮我了解如何使用 PHP 和正则表达式匹配数字吗?
I need to match phone numbers that :
start with 010 or 012 or 016 or 019
Consist of 10 numbers exactly
Can you please help me on how to match numbers using PHP and regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将匹配 0、1、(0、2、6、9) 之一,然后匹配任意 7 个数字 (3+7==10)。
^
表示字符串开始,$
表示字符串结束。This will match 0, 1, one of (0, 2, 6, 9), and then any 7 numbers (3+7==10). The
^
means start of string and$
means end of string.我想我会使用
^01[0269][0-9]{7}$
I think I'd use
^01[0269][0-9]{7}$
使用这个正则表达式
Use this Regex