电话号码格式应该是国际格式,iPhone中是否有用于电话号码验证的正则表达式
电话号码应该是国际电话号码,用户必须输入带有国家/地区代码的完整电话号码。
为此,我需要一个正则表达式来格式化电话号码。
Telephone number should be international and user has to enter the complete phone number with country code.
For that I need a regex for formatting the phone number.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于真正的正则表达式测试,请使用 RegexKitLite。
至于正则表达式本身,类似这样(来自 验证电话号码:A详细指南)应该可以工作:
请注意,当您在代码中指定它时,您需要转义反斜杠字符(\),因此它看起来像这样:
For real regex testing use RegexKitLite.
As for the regular expression itself, something like this (from Validate Phone Numbers: A Detailed Guide) should work:
Note that when you specify it in your code you need to escape the backslash character (\), so it would look like this: