A simple regex based exhaustive validator for PIN codes in India
Go to file
Nemo e625caee29 Version Bump (1.0.4) 2020-04-21 21:11:41 +05:30
src Fixes bug on regex matching not stopping after 6 chars 2020-03-13 17:49:02 +05:30
tests Adds support for browser-usage using browserify 2020-04-21 21:09:50 +05:30
.editorconfig Python package and other updates 2020-03-13 16:42:58 +05:30
.gitignore Improve all ignore files 2020-03-17 01:21:31 +05:30
.npmignore Improve all ignore files 2020-03-17 01:21:31 +05:30
.travis.yml [ci] Travis/py 2020-03-13 17:35:49 +05:30
HACKING.md Adds support for browser-usage using browserify 2020-04-21 21:09:50 +05:30
LICENSE Adds LICENSE and badges 2020-02-25 14:45:40 +05:30
Pipfile Python package and other updates 2020-03-13 16:42:58 +05:30
README.md Adds support for browser-usage using browserify 2020-04-21 21:09:50 +05:30
composer.json Support phpunit 8.0 for php7.2 for now 2020-02-24 23:54:30 +05:30
package.json Version Bump (1.0.4) 2020-04-21 21:11:41 +05:30
phpunit.xml Initial commit 2020-02-24 23:32:18 +05:30
pincode-regex.js Adds support for browser-usage using browserify 2020-04-21 21:09:50 +05:30
pyproject.toml Version Bump (1.0.4) 2020-04-21 21:11:41 +05:30
regex.txt Python package and other updates 2020-03-13 16:42:58 +05:30

README.md

india-pincode-regex Packagist Version Build Status npm GitHub package.json version GitHub

Validate a Postal Index Number for India with a few regexes. The regexes are available in regex.txt. There is one regex per area code (the first digit of the PIN, which goes from 1-8).

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;

Node.js

The package is available on npm.

To use the package:

const P = require('pincode-validator');
P.validate('110011'); // returns true

Browser

To use it in the browser, download the pincode-regex.js file and include it in your browser. Pincode is available as a Global variable.

<script src="../pincode-regex.js"></script>
<script>
Pincode.validate("560029"); // returns true
</script>

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.