REGEXVAULTv2.0
Identity & PII/National Identity Numbers
Verified Safe

Thai National ID (บัตรประชาชน) Regex for Go

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

What this pattern does

This page provides a lightweight, single-purpose regular expression for matching thai national id (บัตรประชาชน), 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

Go
// Thai National ID (บัตรประชาชน)
// ReDoS-safe | RegexVault — Identity & PII > National Identity Numbers

package validation

import "regexp"

var thaiNationalIdRe = regexp.MustCompile(`^[1-9][0-9]{12}$`)

func ValidateThaiNationalId(s string) bool {
    return thaiNationalIdRe.MatchString(s)
}

// Example
// fmt.Println(ValidateThaiNationalId("1234567890123")) // true

Test Cases

Matches (Valid)
Rejects (Invalid)
12345678901230234567890123
987654321098712345678901234
3100600645635123456789012
ABCDEFGHIJKLM

When to use this pattern

This pattern is drawn from the Identity & PII > National Identity 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

The first digit encodes immigration/citizenship status, embedding sensitive information in the number structure itself. Thai PDPA classifies national ID numbers as sensitive personal data.

Technical Notes

Thai ID structure: region (1-8 for citizenship type), province/district/registration sequence (11 digits), check digit. First digit 1-8 = born in Thailand, 0 = illegal immigrant, 9 = not eligible. Checksum: sum of first 12 digits × weights (13-2), last digit = (11 - (sum mod 11)) mod 10.

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