\d{3}-\d{4}
This one matches something like 123-4567
So I change it to ^(?!(\d{3}-\d{4}))
. But it doesn't match anything.
I got a list of phone numbers like
123-4567
NOW-4-WAX
12 345 67 89
I would like to match anything except the format xxx-xxxx
where x
is a digit.