dutch-postcode-regex

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i dutch-postcode-regex

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

2.95 kB

Total Files

4

Last publish

Collaborators

  • martinvd