Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to validate phone or mobile number in javascript.
It should match the following types:
+91-9198387083
9198387083
09198387083
It is a 10 digit number with one of these four prefixes '+91-', '+91', '0' or ''
Can someone suggest me a regex expression in javascript which matches all the three types.

share|improve this question

3 Answers

up vote 4 down vote accepted

I'd using something like this:

/^(\+91-|\+91|0)?\d{10}$/

This is very specific about one of your three allowable prefixes (or no prefix) followed by exactly 10 digits and no extra characters on the beginning of end of the string.

Test app with both valid and invalid phone numbers here: http://jsfiddle.net/jfriend00/K9bjL/

share|improve this answer
Seems that he've edited his answer and its correct. – rcdmk Dec 26 '11 at 17:16
@DevashishDixit - you were very quick. I fixed that issue within a minute or so of posting and how there's a test app that you can plug any test values you want into. – jfriend00 Dec 26 '11 at 17:22
@jfriend00 - thanks for the solution. I really needed it. :) – Devashish Dixit Dec 26 '11 at 17:28

Something like this should work:

/\+?[0-9]+-?[0-9]/

share|improve this answer
This is not very restrictive as it allows any prefix and only matches the first digit of the number itself. – jensgram Dec 26 '11 at 17:15

10 digit number with one of these four prefixes +91-, +91, 0 or :

/(\+91-?|0)?\d{10}/
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.