Regex for Indian mobile number
10-digit Indian mobile, starts with 6, 7, 8, or 9.
The Indian mobile number regex is ^[6-9]\d{9}$ — copy it below, or open it in the explainer for a token-by-token breakdown.
The pattern
^[6-9]\d{9}$
What it matches
9876543210700012345661234567898888888888
What it doesn't match
12345678909876543210158765432109876-5432-10
Notes & gotchas
Per TRAI, Indian mobile numbers are 10 digits and start with 6, 7, 8, or 9. Older patterns starting with 5 are obsolete. Strip the +91 country code before validating.
Code in your language
Use the explainer's Code tab to generate ready-to-paste snippets in JavaScript, Python, Java, .NET, Go, Ruby, and PHP for this pattern.
Open in explainer →Token-by-token breakdown
Every part of the pattern, left to right:
| Token | Meaning |
|---|---|
^ | start of string (or line in multiline mode) |
[6-9] | any of: 6–9 |
\d{9} | exactly 9 times: digit (0–9) |
$ | end of string (or line in multiline mode) |
About this pattern
India-specific identifiers are governed by various authorities (UIDAI for Aadhaar, Income Tax Dept for PAN, RBI for IFSC, GSTN for GSTIN, etc.). Regex confirms format; for definitive validation, integrate with the issuing authority's verification API.
Quick usage in different languages
This exact pattern — with the correct escaping and idioms for each language:
- JavaScript:
/^[6-9]\d{9}$/.test(value) - Python:
re.match(r"^[6-9]\d{9}$", value) - Java:
Pattern.compile("^[6-9]\\d{9}$").matcher(value).matches() - C# / .NET:
Regex.IsMatch(value, @"^[6-9]\d{9}$") - Go:
regexp.MustCompile(`^[6-9]\d{9}$`).MatchString(value) - Ruby:
/^[6-9]\d{9}$/.match?(value) - PHP:
preg_match('~^[6-9]\d{9}$~', $value)
The explainer’s Code tab regenerates these for any pattern you paste, and the downloadable cheat sheet bundles the breakdown, all seven snippets, and the pitfalls below onto one printable page.
Common pitfalls
- Anchored to the whole string. This pattern uses ^ and $, so it requires the entire input to match. To find it inside a longer text, drop the anchors and use the global (g) flag.
- Escape it correctly per language. In Java and JavaScript strings each backslash must be doubled (\\d); in Python, Go, and C# use raw/verbatim strings so the backslashes survive.
- Validate beyond format. Matching the format doesn't guarantee the value is real. Confirm the indian mobile number against a source of truth (database, API, or checksum) where it matters.
Standards & sources
This pattern is based on the following authoritative specification(s) and issuing authorities. Formats can change — always confirm against the primary source.
Related patterns
More patterns in the India 🇮🇳 category:
- Indian bank account number
- Indian mobile with +91
- MICR code
- PIN code (postal)
- IFSC code
- Voter ID (EPIC)
See also
Browse all 300 patterns in the library, or open this regex in the interactive explainer for a token-by-token breakdown, live testing, and code in seven languages.
Want more patterns? Browse the full library →