0

我正在尝试将以前 E164 格式的电话号码格式化为没有国家前缀号码的国家格式,我正在使用 PhoneNumberUtils 来做到这一点:

public static String getNationalPhone(String phoneE164Formatted) {
    PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
    String phoneNumber = phoneE164Formatted;
    try {
        Phonenumber.PhoneNumber numberProto = phoneUtil.parseAndKeepRawInput(phoneE164Formatted, "");
        phoneNumber = phoneUtil.format(numberProto, PhoneNumberUtil.PhoneNumberFormat.NATIONAL);
    } catch (NumberParseException e) {
        e.printStackTrace();
    }

    return phoneNumber;
}

使用该代码,我得到了我不想要的国家前缀。例如,将这个数字“+526143342293”格式化为国家格式给了我这个结果:“01 614 334 22 93”,其中“01”是我想要抑制的。

4

1 回答 1

-1

https://github.com/brick/phonenumber/blob/master/src/PhoneNumber.php

这些答案在 php 中,你可以转换成你自己的。

public function getCountryCode()
{
    return (string) $this->phoneNumber->getCountryCode();
}

转换上面的代码将得到所需格式的国家号码。

于 2017-04-07T12:29:48.720 回答