I'm looking for a regular expression that will match text given the following requirements:
- contains only 10 digits (only numbers)
- starts with 9.
These examples should match:
- 9999999999
- 9876543210
These examples should not match:
- 999999999
- 1234567890
- 8912456789
- qwe3456&ert
It is basically for Indian mobile numbers.
Please provide examples, I have already searched Google and those answers provide over-validation.