JavaScript 中的电话号码格式
我需要检查电话号码格式。
+33xxxxxxxxx
0033xxxxxxxxx
编辑:0xxxxxxxxx
我怎样才能用(out)正则表达式做到这一点?
I need to check Format Phone Number.
+33xxxxxxxxx
0033xxxxxxxxx
EDIT : 0xxxxxxxxx
How can I do that with(out) regex ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
与之匹配的正则表达式是
我使用 http://regexpal.com/ 进行快速正则表达式测试
The regex to match it would be this
I use http://regexpal.com/ for quick regex testing
PhoneFormat.com 有一个 JavaScript 库,其中包含一些格式化函数,您可以轻松地将它们放入项目中。它会接受你输入的任何数字并尝试将其转换为 e164 (+ 33252525252),并格式化它 (+33 2 52 52 52 52)
PhoneFormat.com has a javascript library that has some formatting functions that you could easily drop into your project. It will take whatever number you throw at it and try and convert it to e164 (+ 33252525252), and also format it (+33 2 52 52 52 52)
试试这个正则表达式:
/^((\+|00)\d{2})?\d{9}$/
这与您给定的每个案例匹配 (
+YYXXXXXXXXX
,00YYXXXXXXXXX
,XXXXXXXXX
)。编辑:匹配您的编辑:
/^((\+|00)\d{2}|0)\d{9}$/
Try this regex:
/^((\+|00)\d{2})?\d{9}$/
This matches each of your given cases (
+YYXXXXXXXXX
,00YYXXXXXXXXX
,XXXXXXXXX
).Edit: To match your edit:
/^((\+|00)\d{2}|0)\d{9}$/
这是验证您的示例的正则表达式:
This is a regex that validates your examples: