日期提取库
有谁知道是否有任何库可以提取给定文本正文的日期和时间?哪种语言并不重要,我只是在寻找一个可以使用的库。
Does anyone know if there are any libraries around that will extract dates and times given a body of text? It doesn't matter which language, I'm just looking for a library to play with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Perl 的 Date::Manip 模块可以读取日期几乎以任何格式编写。
文档页面上给出的示例:
任何不提供日期信息的文本都会被忽略。因此,您可以解析整个文档,使用该库查找日期。
Perl's Date::Manip module can read dates written in nearly any format.
Examples given on the doc page:
Any text that doesn't provide date information is ignored. So you could parse whole documents, looking for dates using this library.