Mac OS X 中用于自然文本处理的框架、库或工具
我正在寻找一种从用户输入中提取日期的解决方案。它应该支持:
- 除英语之外的其他语言
- 它应该用 C/ObjC/C++/Python/Perl/Ruby 编写
- 目标平台是 Mac OS X 10.6+
- 它必须不需要互联网连接
欢迎付费解决方案以及开源(非通用公共许可证)。
I'm looking for a solution to extract dates from the user input. It should support:
- other languages than English
- it should be written in C/ObjC/C++/Python/Perl/Ruby
- the target platform is Mac OS X 10.6+
- it must not require internet connection
Paid solution are welcome as well as open source (non GPL).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 在 10.7 中包含了 NSDataDetector。
除了URL、电话号码等之外,它还支持日期(NSTextCheckingTypeDate)检测。 (似乎 Mail.app 广泛使用了这些检测器)
此示例检测“字符串”中的所有日期并记录匹配(如果有)位置和位置。长度:
Apple included NSDataDetector in 10.7.
Besides URLs, phone numbers, etc. it also supports date (NSTextCheckingTypeDate) detection. (It seems that Mail.app makes extensive use of those detectors)
This example detects all dates in "string" and logs the matches (if any) locations & length: