US Passport Number Regex for JavaScript
/^[A-Z][0-9]{8}$|^[A-Z]{2}[0-9]{7}$/What this pattern does
This page provides a well-structured, multi-part regular expression for matching us 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
// US Passport Number
// ReDoS-safe | RegexVault — Identity & PII > Passport Numbers
const usPassportNumberRegex = /^[A-Z][0-9]{8}$|^[A-Z]{2}[0-9]{7}$/;
function validateUsPassportNumber(input: string): boolean {
return usPassportNumberRegex.test(input);
}
// Example
console.log(validateUsPassportNumber("A12345678")); // trueTest Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
A12345678 | 12345678A |
AB1234567 | A1234567 |
Z99999999 | A123456789 |
| — | a12345678 |
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
US passport numbers are sequential and do not encode personally identifying information (unlike some other countries). However, they are still highly sensitive as they are the primary document for international travel.
Technical Notes
US passport books use 1 letter + 8 digits. US passport cards also use 9 alphanumeric characters. Older US passports may have different formats. The State Department does not publish the exact checksum algorithm.
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