REGEXVAULT
Identity & PII/Passport Numbers
ReDoS Checked

UK Passport Number Regex for Python

/^[0-9]{9}$/

All five implementations are free. Switch engines without signing in.

What this pattern does

This page provides a lightweight, single-purpose regular expression for matching uk passport number, ported and verified for Python. 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 Python project — whether you're validating in a Django view, a FastAPI endpoint, or a standalone data processing script.

Python Implementation

Python
# UK Passport Number
# ReDoS-checked | RegexVault — Identity & PII > Passport Numbers

import re

uk_passport_number_pattern = re.compile(r'^[0-9]{9}$')

def validate_uk_passport_number(value: str) -> bool:
    return bool(uk_passport_number_pattern.fullmatch(value))

# Example
print(validate_uk_passport_number("123456789"))  # True

Test Cases

Matches (Valid)
Rejects (Invalid)
12345678912345678
0000000011234567890
99999999912345678A
12-345-678

When to use this pattern

This pattern is drawn from the Identity & PII > Passport Numbers category and has been checked for ReDoS risk. That matters for Python developers because particularly important in Python web servers where CPU-bound regex operations can stall concurrent request handling. 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. Submissions join the review queue after automated validation.

Submit a Pattern