Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
please, update Indian mobile phone no. regular expression starting with +91-10 digit no.s.
/^([+]{1})+([9]{1})+([1]{1})+([-]{1})+([0-9]{10})$/
Thanks
From:-
Ashutosh Ojha
trainee.
Posted

Try this:

((\+*)((0[ -]+)*|(91 )*)(\d{12}+|\d{10}+))|\d{5}([- ]*)\d{6}
 
Share this answer
 
Google gave me sites like http://regexlib.com/[^], browse there

OR

Create yourself. Check these
Expresso - A Tool for Building and Testing Regular Expressions[^]
The 30 Minute Regex Tutorial[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900