I need a regex to validate only 0s or 1s in a phone number. For eg – 0000000000 or 1111111111 should be invalid.
Also my phone number range is from 7-15 only. Below is my regex [0-9]{7,15}
it should add validation in the regex to invalidate only 0 and only 1 in the phone number
2
Answers
This regex will match the phone numbers with 0s and 1s
/([01*]{10})/gm
Regex pattern for 1s and 0s only
HTML EXAMPLE