电话号码格式应该是国际格式,iPhone中是否有用于电话号码验证的正则表达式

发布于 2024-10-04 21:30:22 字数 75 浏览 2 评论 0原文

电话号码应该是国际电话号码,用户必须输入带有国家/地区代码的完整电话号码。

为此,我需要一个正则表达式来格式化电话号码。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

氛圍 2024-10-11 21:30:22

对于真正的正则表达式测试,请使用 RegexKitLite

至于正则表达式本身,类似这样(来自 验证电话号码:A详细指南)应该可以工作:

^\+(?:[0-9] ?){6,14}[0-9]$

请注意,当您在代码中指定它时,您需要转义反斜杠字符(\),因此它看起来像这样:

NSString *regexString = @"^\\+(?:[0-9] ?){6,14}[0-9]$";

For real regex testing use RegexKitLite.

As for the regular expression itself, something like this (from Validate Phone Numbers: A Detailed Guide) should work:

^\+(?:[0-9] ?){6,14}[0-9]$

Note that when you specify it in your code you need to escape the backslash character (\), so it would look like this:

NSString *regexString = @"^\\+(?:[0-9] ?){6,14}[0-9]$";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文