Skip to content

It finds dates in your text with Node JS and returns extracted strings, start and end indices, the date object. It works for English, Russian and Ukrainian languages in the date range from 1900 to 2000.

License

Notifications You must be signed in to change notification settings

Amice13/datefinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Datefinder

Description

It finds dates in your text with Node JS and returns extracted strings, start and end indices, the date object. It works for English, Russian and Ukrainian languages in the date range from 1900 to 2000.

Parameters

Method can be called by datefinder(text), where text is your text.

Installation

npm install datefinder --save

Usage

const dateFinder = require('datefinder')

let text = 'Це трапилося 2 січня 2001 року. Я отримав листа, на якому була зазначена дата 12.12.2004.'

console.log(dateFinder(text))

Expected outcome:

[ { startIndex: 12,
    endIndex: 30,
    string: ' 2 січня 2001 року',
    date: 2001-01-02T00:00:00.000Z },
  { startIndex: 78,
    endIndex: 88,
    string: '12.12.2004',
    date: 2004-12-12T00:00:00.000Z } ]

Acknowledgement

This package was inspired by akoumjian's datefinder.

License

MIT

About

It finds dates in your text with Node JS and returns extracted strings, start and end indices, the date object. It works for English, Russian and Ukrainian languages in the date range from 1900 to 2000.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published