Address
fr
#postal
#france
#french
#address
French Postal Code
Matches a French postal code — exactly 5 digits, starting with 0–9.
✓ French address forms✓ VAT region detection✓ Delivery zones
✓ Valid Examples
- 75001
- 69001
- 13001
- 06000
✗ Invalid Examples
- 00000
- 99000
- 1234
- 750011
Usage & Integration
Validate French Postal Code natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('fr-postal', '...');Python
from regexto_validators import validate
validate("fr-postal", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("fr-postal", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('fr-postal', '...');Rust
use regexto_validators::validate;
let is_valid = validate("fr-postal", "...").unwrap();