mirror of
https://github.com/captn3m0/india-pincode-regex.git
synced 2024-09-10 13:46:45 +00:00
A simple regex based exhaustive validator for PIN codes in India
src | ||
tests | ||
.gitignore | ||
.travis.yml | ||
composer.json | ||
HACKING.md | ||
package-lock.json | ||
package.json | ||
phpunit.xml | ||
README.md | ||
regex.txt |
india-pincode-regex
Validate a Postal Index Number for India with a regex. The regexes are available in regex.txt
. There are 2 regexes. The first validates PINs starting from 1-4, and the second validates the ones starting from 5-8. The reason for the split is to keep the regex size small. Currently they are both at 16K each.
Source
The source for the data is the "All India Pincode Directory" dataset on data.gov.in.
Usage
The regex.txt
file is 32KB in size, so you can easily use it wherever you want, including browsers.
PHP
The package is available on packagist
.
To use the PHP package:
use PIN\Validator as P;
P::validate('110011'); // returns true;
Contributing
- See
HACKING.md
for some development details. - Pull requests are welcome for adding libraries in other languages (in the same repo).
License
Licensed under the MIT License. See LICENSE file for details.