I want to have phone number in working combination of '0' followed by 10 digit mobile number (or) 0091 folllowed by 10 digit mobile number (or) +91 followed by 10 digit number.
1) 0 followed and +91 folowed numbers are working with following regex i also want 0091 followed number to be worked, my regex is:
"^([0]|(?:[0][0]|\\+)(91))([7-9]{1})([0-9]{9})$";
Could you suggest me working a regex.