1.0.0 • Published 9 years ago

regex-iso-date v1.0.0

Weekly downloads
866
License
MIT
Repository
github
Last release
9 years ago

regex-iso-date

NPM version build status Test coverage Downloads

Regular expression for ISO date.

Installation

npm install regex-iso-date

Usage

var regex = require('regex-iso-date');

regex().test('2011-10-05T14:48:00.000Z');
// => true

var match = regex().exec('2011-10-05T14:48:00.000Z');
match[0] // => '2011-10-05T14:48:00.000Z'
match[1] // => '2011'
match[2] // => '10'
match[3] // => '05'
match[4] // => '14:48:00'
match[5] // => '14'
match[6] // => '48'
match[7] // => '00'
match[8] // => '000'

Contributors

See Also

License

MIT