Android : Delete country code from contact

Ovi

How can i delete or detect the country codes of contact numbers efficiently ?

+213231756 will be 231756 (+231 is the country code of Algeria)

+880171876809 will be 0171876809(+88 is the country code of BD)

Say for example: i create a string.xml file like

<string-array name="CountryCodes" >
<item>93,AF</item> 
<item>355,AL</item>
<item>213,DZ</item>

And there are almost 190+ country codes in xml . and check every contact number with the string array isn't time efficient.

Is there any efficient solution to detect the country code of a list of phone number.

sunil sunny

You can use "libphonenumber.jar" for this. http://repo1.maven.org/maven2/com/googlecode/libphonenumber/libphonenumber/7.3.1/

PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
try {
    // phone must begin with '+'
    PhoneNumber numberProto = phoneUtil.parse(phone, "");
    int countryCode = numberProto.getCountryCode();
} catch (NumberParseException e) {
    System.err.println("NumberParseException was thrown: " + e.toString());
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Creating contact with country code in Android

From Dev

How to get phone contact without country code?

From Dev

How to take country_iso_code from selected country name from the spinner android

From Dev

Android Locale Country name to Country code

From Dev

Get country code from PlaceAutocompleteFragment android (Google Places API)

From Dev

Get country name from Country code in python?

From Dev

Getting country name from country code in WooCommerce

From Dev

How to get country name from country code?

From Dev

Getting country name from country code

From Dev

Get country name from Country code in python?

From Dev

How to get Country Code like +91, +1, +65 from the country name like IN, US, SG in Android?

From Dev

country code validation with + symbol, Android

From Dev

Fetching contact from Contact list in Android

From Dev

Delete the country from address of LatLng object

From Dev

Save country in Contact Intent

From Dev

When I delete a contact from Skype, is this contact informed?

From Dev

How to delete sim card contact in android

From Dev

How to get the country code from a specific country in c#?

From Dev

How to get OpenLayers to select a country from a country code?

From Dev

How to delete specific contact from phonebook

From Dev

Retrieve photo from contact android

From Dev

Searching Country by Country code

From Dev

How to get the country code from CultureInfo?

From Dev

How to get the country code from CultureInfo?

From Dev

Get Country code from VBA and LDAP

From Dev

Getting Currency Information From Country Code in PHP

From Dev

Extracting Country Code From Mobile Number

From Dev

Remove only country code from string not slahsh?

From Dev

how to remove duplicate contact from contact list in android

Related Related

  1. 1

    Creating contact with country code in Android

  2. 2

    How to get phone contact without country code?

  3. 3

    How to take country_iso_code from selected country name from the spinner android

  4. 4

    Android Locale Country name to Country code

  5. 5

    Get country code from PlaceAutocompleteFragment android (Google Places API)

  6. 6

    Get country name from Country code in python?

  7. 7

    Getting country name from country code in WooCommerce

  8. 8

    How to get country name from country code?

  9. 9

    Getting country name from country code

  10. 10

    Get country name from Country code in python?

  11. 11

    How to get Country Code like +91, +1, +65 from the country name like IN, US, SG in Android?

  12. 12

    country code validation with + symbol, Android

  13. 13

    Fetching contact from Contact list in Android

  14. 14

    Delete the country from address of LatLng object

  15. 15

    Save country in Contact Intent

  16. 16

    When I delete a contact from Skype, is this contact informed?

  17. 17

    How to delete sim card contact in android

  18. 18

    How to get the country code from a specific country in c#?

  19. 19

    How to get OpenLayers to select a country from a country code?

  20. 20

    How to delete specific contact from phonebook

  21. 21

    Retrieve photo from contact android

  22. 22

    Searching Country by Country code

  23. 23

    How to get the country code from CultureInfo?

  24. 24

    How to get the country code from CultureInfo?

  25. 25

    Get Country code from VBA and LDAP

  26. 26

    Getting Currency Information From Country Code in PHP

  27. 27

    Extracting Country Code From Mobile Number

  28. 28

    Remove only country code from string not slahsh?

  29. 29

    how to remove duplicate contact from contact list in android

HotTag

Archive