US Passport Number Regex for Go
/^[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 Go. 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 Go project — whether you're validating in a Gin handler, a gRPC service, or a command-line tool.
Go Implementation
// US Passport Number
// ReDoS-safe | RegexVault — Identity & PII > Passport Numbers
package validation
import "regexp"
var usPassportNumberRe = regexp.MustCompile(`^[A-Z][0-9]{8}$|^[A-Z]{2}[0-9]{7}$`)
func ValidateUsPassportNumber(s string) bool {
return usPassportNumberRe.MatchString(s)
}
// Example
// fmt.Println(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 Go developers because Go's RE2 engine is inherently safe from catastrophic backtracking, but this pattern has been additionally verified for correctness. 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