标准化国际电话号码仅使用正则表达式的代码

发布于 2024-08-26 17:42:44 字数 523 浏览 3 评论 0原文

Android 上的 Sipdroid 有一个搜索和搜索功能。替换方法,使用正则表达式。 我试图用它来确保所有拨出电话都有 00XX 格式的国家/地区代码,

如果没有国家/地区代码,我还希望它在号码前面加上 0045。

第一个问题我已经解决了,但我不知道如何做第二件事。

搜索

\A(((\+)(\d{2})?)|(00(\d{2})?)|)((\d|\s)+)\Z

替换

00$4$6$7

我正在使用 http://www.regexplanet.com/simple/index.html 进行测试,测试字符串为:“12345678”、“+4512345678”和“004512345678” 它们都应该返回“004512345678”。

Sipdroid on Android has a search & replace method, that uses regex.
I'm trying to use it to make sure all outgoing calls has a country code in the format 00XX

I also want it to put 0045 in front of the number, if no country code is present.

The first one, I have solved, but I can't figure out how to do the second thing.

Search:

\A(((\+)(\d{2})?)|(00(\d{2})?)|)((\d|\s)+)\Z

Replace:

00$4$6$7

I'm using http://www.regexplanet.com/simple/index.html to test it, with the test strings: "12345678", "+4512345678" and "004512345678"
They should all return "004512345678".

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

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

发布评论

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

评论(1

蓝梦月影 2024-09-02 17:42:44

您应该注意,国家/地区代码很可能是 3 位甚至 4 位数字。

有关详细信息,请参阅国家/地区呼叫代码列表

您之后的替换是非常上下文相关的,所以我猜不可能用单个正则表达式来解决它(以足够简单的方式使其实际可用)。再说一遍,我不是正则表达式专家。

You should be aware that country codes may well be 3 or even 4 digits long.

See the list of country calling codes for details.

The replacement you are after is quite context-sensitive, so I would guess it is not possible to solve it with a single regex (in a simple enough way to make it actually usable). Then again, I am not a regex guru.

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