I need a regex to validate phone numbers which contains only 0 or 1 as invalid – Jquery
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…