6

我知道 Google libphonenumber 解析库的 C# 端口: http ://code.google.com/p/libphonenumber/

我需要的是获取一个电话号码字符串并将其分解为相应的部分,国家代码、区号、前缀、号码和分机。

这个库可以用来做到这一点吗?如果是这样,有人可以在 C# 中发布一个简单的测试来做到这一点吗?我没有在文档中看到如何做到这一点。

顺便说一句,它们可以是国内的或国际的。

4

2 回答 2

7

libphonenumber 库将解析一个号码并验证它是否与国内和国际号码的已知模式匹配。它会告诉您国家代码和任何给定号码在国内或国际上的正确拨号模式。

它不会将其解析为除此之外的组成部分。无区号、前缀、号码、分机解析。

它是开源的,所以如果你需要这样做,它可能是一个很好的起点,但我相信这将是一项艰巨的任务。

于 2012-09-22T03:05:38.283 回答
3

Patrick Mezard 已将库移植到 C#:

https://bitbucket.org/pmezard/libphonenumber-csharp/wiki/Home

使用方法可以看官网:

http://code.google.com/p/libphonenumber/

Java 代码可以直接翻译成 C#。例如:

爪哇

String swissNumberStr = "044 668 18 00"
PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
try {
  PhoneNumber swissNumberProto = phoneUtil.parse(swissNumberStr, "CH");
} catch (NumberParseException e) {
  System.err.println("NumberParseException was thrown: " + e.toString());
}

C#

String swissNumberStr = "044 668 18 00";
PhoneNumberUtil phoneUtil = PhoneNumberUtil.GetInstance();
try
{
    PhoneNumber swissNumberProto = phoneUtil.Parse(swissNumberStr, "CH");
    Console.WriteLine(swissNumberProto.CountryCode);
}
catch (NumberParseException e)
{
    Console.WriteLine("NumberParseException was thrown: " + e.ToString());
}

祝你好运。

更新:

更多示例: http ://code.google.com/p/libphonenumber/source/browse/#svn/trunk/java/libphonenumber/test/com/google/i18n/phonenumbers

如果你没有看到你需要什么,那么我想你可以自己实现它。

于 2012-09-22T03:09:34.833 回答