Mac OS X 中用于自然文本处理的框架、库或工具

发布于 2024-12-25 10:40:20 字数 196 浏览 1 评论 0原文

我正在寻找一种从用户输入中提取日期的解决方案。它应该支持:

  • 除英语之外的其他语言
  • 它应该用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然#的苍凉 2025-01-01 10:40:20

Apple 在 10.7 中包含了 NSDataDetector
除了URL、电话号码等之外,它还支持日期(NSTextCheckingTypeDate)检测。 (似乎 Mail.app 广泛使用了这些检测器)

此示例检测“字符串”中的所有日期并记录匹配(如果有)位置和位置。长度:

NSError* error = NULL;
NSDataDetector* detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeDate error:&error];
NSArray* matches = [detector matchesInString:string options:0 range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult* match in matches) 
{
    NSRange matchRange = [match range];
    NSLog(@"Match at position:%lu with length:%lu", matchRange.location, matchRange.length);
}

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:

NSError* error = NULL;
NSDataDetector* detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeDate error:&error];
NSArray* matches = [detector matchesInString:string options:0 range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult* match in matches) 
{
    NSRange matchRange = [match range];
    NSLog(@"Match at position:%lu with length:%lu", matchRange.location, matchRange.length);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文