Solved
Phone Number Format
Hi guys,
Is it possible to format the number in the following way:
- All phone numbers must start with +
- The first number after + cannot be 0 (valid numbers are from 1 to 9)
- There must be at least one number after the first number
- All other symbols are invalid
- Example of the valid number: +1234567 and +12345678
I am aware of the mask input and I know I can put +99999999, the problem is that not all phone numbers have the same number of characters, and with mask input, if I put +99999999 it will accept only 9 characters. So, mask input won't work for me.
Thanks!