UK Passport Number Regex for JavaScript
/^[0-9]{9}$/What this pattern does
This page provides a lightweight, single-purpose regular expression for matching uk passport number, ported and verified for JavaScript. Identity and credential patterns need both correctness and safety, since they're frequent targets for adversarial input. The snippet below is ready to drop into your JavaScript project — whether you're validating in an Express middleware, a Next.js API route, or a client-side form.
Javascript Implementation
// UK Passport Number
// ReDoS-safe | RegexVault — Identity & PII > Passport Numbers
const ukPassportNumberRegex = /^[0-9]{9}$/;
function validateUkPassportNumber(input: string): boolean {
return ukPassportNumberRegex.test(input);
}
// Example
console.log(validateUkPassportNumber("123456789")); // trueTest Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
123456789 | 12345678 |
000000001 | 1234567890 |
999999999 | 12345678A |
| — | 12-345-678 |
When to use this pattern
This pattern is drawn from the Identity & PII > Passport Numbers category and carries a ReDoS-safe certification. That matters for JavaScript developers because especially critical in long-running Node.js event loops where a ReDoS vulnerability can block the entire process. RegexVault audits patterns against known backtracking attack vectors, ensuring you have the necessary context before using this regex in a high-stakes production environment.
Common Pitfalls
The simple 9-digit format means any 9-digit number passes the regex check. Semantic validation (the number actually exists) requires checking against passport records, which is not publicly available.
Technical Notes
UK passport numbers are 9 digits. The format changed to a simple 9-digit number from an older alphanumeric format. HMPO (His Majesty's Passport Office) issues the numbers sequentially.
Have a pattern that belongs in the vault?
Submit it for review — community-verified patterns get credited to your GitHub handle. Free submissions join the queue. Priority review available for $15.
Submit a Pattern