I want to match phone numbers like this,
It should have 3 digits except 000,666
and any numbers between 900-999
followed by "-", then 2 digits followed by "-", then 4 digits.
For example:
123-75-3456 is a match
000- 23-3452 is not a match (no 000)
915-23-4534 is not a match (greater than 900)
This is where I currently stand:
[0-9&&^[000,666,[900-999]]{3}-[0-9]{2}-[0-9]{4}