Is there a natural language parser for date/times in javascript?
datetime, javascript, nlp
Solution
SugarJS supports some natural language parsing of dates and times.
You can jump to the live example here: http://sugarjs.com/dates
For example, it supports the following inputs:
- the day after tomorrow
- 2 weeks from monday
- May 25th of next year
You can then covert the result into different date formats or use the API to further manipulate the date.
Problem
Is there a natural language parser for date/times in javascript?