有谁知道验证 MSISDN 格式手机号码的正则表达式吗?

发布于 2024-10-14 14:13:46 字数 514 浏览 4 评论 0原文

有谁知道验证 MSISDN 格式手机号码的正则表达式吗?

我研究了发布在 http://charlvn.blogspot.com/ 的解决方案2010/06/msisdn-regular-expressions.html 但我认为这不是一个通用的解决方案。

我正在寻找一个可以验证任何 MSISDN 标准手机号码的验证正则表达式。 http://en.wikipedia.org/wiki/MSISDN

其次,我正在寻找意思是检查有效的MSISDN手机号码是否来自特定国家,例如“31628000000”是来自荷兰的号码,因为它以网络号码“31”开头。

我将用 Python 实现验证部分。

提前致谢!

Does anyone know a regular expression to validate MSISDN-format mobile numbers?

I looked into a solution posted at http://charlvn.blogspot.com/2010/06/msisdn-regular-expressions.html but I think that's not a generic solution.

I'm looking for a validation regex that could validate any MSISDN-standard mobile number.
http://en.wikipedia.org/wiki/MSISDN

Secondly, I'm looking for the means to check whether a valid MSISDN mobile number is from a specific country, like "31628000000" is a number from the netherlands, because it starts with the netnumber "31".

I'm going to implement the validating part in Python.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

他不在意 2024-10-21 14:13:46

这应该可以 - 我不确定您可以获得多少通用性:

/^[1-9][0-9]{10,14}$/

要检查号码是否属于特定国家/地区,请修改模式以在国家/地区代码前面加上,然后调整其余数字以匹配:

/^(873[1-9][0-9]{7,11}|91[1-9][0-9]{8,12})$/    #  India
/^46[1-9][0-9]{8,12}$/                          # Sweden

This should do -- I'm not sure how much more generic you can get:

/^[1-9][0-9]{10,14}$/

To check a number to belong to a particular country, modify the pattern to preface the country code, and then adjust the remaining digits to match:

/^(873[1-9][0-9]{7,11}|91[1-9][0-9]{8,12})$/    #  India
/^46[1-9][0-9]{8,12}$/                          # Sweden
美羊羊 2024-10-21 14:13:46
  /^[1-9][0-9]{10,14}$/

最短的国际电话号码只有 7 位数字,例如 +247 2468。

  /^[1-9]\d{6,14}$/
  /^[1-9][0-9]{10,14}$/

The shortest international phone number is only 7 digits long, e.g. +247 2468.

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