Natural language time parser

2019-01-18 07:45发布

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?

3条回答
Anthone
2楼-- · 2019-01-18 08:05

parsedatetime looks promising. Credit.

查看更多
Root(大扎)
3楼-- · 2019-01-18 08:06

Just for anyone who is interested, I found this:

https://gist.github.com/akatzbreaker/5849024

This is the same as Bert's Anwser on Github, but it is in English... Just for anyone who is interested on this, and doesn't know Dutch :-P ...

查看更多
地球回转人心会变
4楼-- · 2019-01-18 08:15

I didn't feel like extending parsedatetime, so I decided to use pyPEG, a parser interpreter framework for Python, to write a dedicated time parser. For whoever's interested, the first basic version is now finished, and nicely parses Dutch time strings.

查看更多
登录 后发表回答