martinvd / dutch-postcode-regex

Regular expression for matching Dutch postcodes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dutch-postcode-regex Build Status

Regular expression for matching Dutch postcodes

Install

$ npm install dutch-postcode-regex

Usage

const dutchPostcodeRegex = require('dutch-postcode-regex');

// Contains a postcode
dutchPostcodeRegex().test('foo 33000AB');
//=> true

// Is a postcode
dutchPostcodeRegex({exact: true}).test('bar 2012 ES');
//=> false

'Their postcode is 3121 ar, or was it 3201EB?'.match(dutchPostcodeRegex());
//=> ['3121 ar', '3201EB']

API

dutchPostcodeRegex([options])

Returns a regex for matching Dutch postcodes.

options

exact

Type: boolean
Default: false (Matches any Dutch postcode in a string)

Only match an exact string.
Useful with RegExp#test to check if a string is a Dutch postcode.

License

MIT © Martin van Driel

About

Regular expression for matching Dutch postcodes

License:MIT License


Languages

Language:JavaScript 100.0%