I need a Javascript RegEx through which I can validate phone number. RegEx should handle following criteria
- It should only consist of numbers ( ) + and -
- Count of + should not exceed 1
- Count of - should not exceed 4
- There must be only one pair of ()
- If 开发者_开发技巧'(' is present in phone number then ')' must be present.
Thanks for the help!
Hussain.
Try this:
function valid_phone_number(ph) {
var regex = /^(?!([^-]*-){5})(\+\d+)?\s*(\(\d+\))?[- \d]+$/gi;
return regex.test(ph);
}
I'm new to regular expressions, so please be nice. :-)
精彩评论