开发者

Regular Expression for Phone Number

I need a Javascript RegEx through which I can validate phone number. RegEx should handle following criteria

  1. It should only consist of numbers ( ) + and -
  2. Count of + should not exceed 1
  3. Count of - should not exceed 4
  4. There must be only one pair of ()
  5. 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. :-)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜