regex-jmbg

1.0.0 • Public • Published

regex-jmbg

Regular expression for JMBG.

Installation

npm install regex-jmbg --save

Examples

var jmbg = require('regex-jmbg');
 
jmbg().test('1304005111059'); // => true
jmbg().test('3213973392147'); // => false
 
jmbg().exec('1304005111059');
// => [0] '1304005111059'
// => [1] '13'
// => [2] '04'
// => [3] '005'
// => [4] '11'
// => [5] '105'
// => [6] '9'

Match groups

  • [0]: full JMBG
  • [1]: day of birth
  • [2]: month of birth
  • [3]: last three digits of the year of birth
  • [4]: political region of birth
  • [5]: unique number of the particular political region
  • [6]: control number

License

MIT © Ivan Nikolić

Package Sidebar

Install

npm i regex-jmbg

Weekly Downloads

13

Version

1.0.0

License

MIT

Last publish

Collaborators

  • niksy