Questions tagged «libphonenumber»

7
从电话号码[libphonenumber]中提取代码国家/地区
我有一个像这样的字符串:+33123456789(法国电话号码)。我想在不知道国家的情况下提取国家代码(+33)。例如,如果我有另一个国家的电话,它应该可以工作。我使用Google库https://code.google.com/p/libphonenumber/。 如果我知道国家/地区,这很酷,我可以找到国家/地区代码: PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance(); int countryCode = phoneUtil.getCountryCodeForRegion(locale.getCountry()); 但是我不知道如何在不了解国家的情况下解析字符串。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.