标准化国际电话号码仅使用正则表达式的代码
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该注意,国家/地区代码很可能是 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.