Skip to main content
AllDevToolsHub
Back to all patterns

India Pincode

Validation

Validates an Indian 6-digit PIN code.

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

How it works

Indian postal PIN codes are 6 digits and cannot start with 0.

Test Cases

Should Match

  • 110001
  • 560001
  • 400001

Should NOT Match

  • 011000
  • 12345
  • 1100012

Quick Summary

Validates a 6-digit Indian PIN code that does not start with 0.