skip to Main Content

How can I validate a phone number for my location like most messaging apps do (WhatsApp and Telegram)?. Is there some API for this and if so how to use it?

3

Answers


  1. You could use Google libphonenumber it can do some validation. You can try live demo here.

    Login or Signup to reply.
  2. You can use the google libphonenumber for validation as ma3a mentioned. It is what google uses on Android phones to determine that you are writing a phone number. For a much simpler approach you could use a regex. (Here is a site that has a list of them that might be sufficient: regexlib.net)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search