Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Natural language time parser

I'm trying to parse strings containing (natural language) times to hh:mm time objects? For example:

"ten past five"
"quarter to three"
"half past noon"
"15 past 3"
"13:35"
"ten fourteen am"

I've looked into Chronic for Ruby and Natty for Java (as well as some other libraries) but both seem to focus on parsing dates. Strings like "ten past five" are not parsed correctly by either.

Does anyone know of a library which suit my needs? Or should I maybe start working on my own parser?

like image 577
Bert Avatar asked Dec 04 '22 03:12

Bert


1 Answers

parsedatetime looks promising. Credit.

like image 119
Achal Dave Avatar answered Dec 29 '22 14:12

Achal Dave