获取没有国家/地区代码的电话号码以进行比较

时间:2011-07-25 08:50:38

标签: android phone-number mobile-country-code

我可以通过来电或短信来获取电话号码。不幸的是,在SMS的情况下,可能有国家代码。所以,基本上我需要获取没有国家代码的普通电话号码,以便将其与联系人中的现有号码进行比较。

2 个答案:

答案 0 :(得分:30)

如果您想比较电话号码,可以随时使用

PhoneNumberUtils.compare(number1, number2);

PhoneNumberUtils.compare(context, number1, number2);

然后您不必担心国家/地区代码,它只会比较相反顺序的数字并查看它们是否匹配(至少足以用于来电ID)。

答案 1 :(得分:-1)

快速未经测试的方法(AFAIK电话号码有10位数字):

// As I said, AFAIK phone numbers have 10 digits... (at least here in Mexico this is true)
int digits = 10;
// the char + is always at first.
int plus_sign_pos = 0;

// Always send the number to this function to remove the first n digits (+1,+52, +520, etc)
private String removeCountryCode(String number) {
    if (hasCountryCode(number)) {
        // +52 for MEX +526441122345, 13-10 = 3, so we need to remove 3 characters
        int country_digits = number.length() - digits;
        number = number.substring(country_digits);
    }
    return number;
}

// Every country code starts with + right?
private boolean hasCountryCode(String number) {
    return number.charAt(plus_sign_pos) == '+'; // Didn't String had contains() method?...
}

然后你只需要调用这些函数