I use the link below:
http:
- phone number:
96596032346 - region code:
KW
the link returns that the number is valid.
I am using a library in C # as shown below:
PhoneNumberUtil phoneUtil = PhoneNumberUtil.GetInstance();
phoneNumber = PhoneNumberUtil.Normalize(phoneNumber);
PhoneNumber nb = phoneUtil.Parse(phoneNumber, regionCode);
bool isValid = phoneUtil.IsValidNumber(nb);
I pass the same parameters phoneNumber=96596032346and regionCode=KW, but it returns that the number is invalid.
I checked some updates for the library, but I have the latest version. What could be the problem?
source
share