Should match the following:-
(222)-333-4444
(010)-123-3435
(100)-454-6565
But Should disallow:-
(000)-000-0000
The only problem is when the input is entered all zeros. Otherwise my regex:-
^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$
works fine__.