How to validate Mobile number for different countries

4.9k Views Asked by At

the length of mobile number varies from country to country. Tired regular expresssion but (Ex:India allows 10 digits, which is not validating UAE which ranges from 7 to 9 digits)

2

There are 2 best solutions below

2
On

you can try using Google's phone number library. It contains the isValidNumberfunction which provides "full validation of a phone number for a region using length and prefix information". https://github.com/googlei18n/libphonenumber

0
On

Add this dependency to your pom.xml

<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber -->
<dependency>
    <groupId>com.googlecode.libphonenumber</groupId>
    <artifactId>libphonenumber</artifactId>
    <version>8.4.3</version>
</dependency>