机器只用二进制说话,而人类的语言却充满了谜语,真假,和省略。
当人类在他们所有的日常交往中都使用 RDF 后,人工智能的一大任务就是要去搞清楚到底我们都在谈论什么。
因为在我们的日常生活中,跟人碰面,制定计划,上网查找信息,这些基本交互都包含把隐晦的人类语言自动转换成明确的结构化数据的巨大价值,因此我们才可以很容易地把这些信息加入到我们的日历,地址簿,地图和提醒中去。
幸运的是,对于 Cocoa 开发者来说,有一个简单的解决方案:NSDataDetector
。
NSDataDetector
是 NSRegularExpression
的子类,而不只是一个 ICU 的模式匹配,它可以检测半结构化的信息:日期,地址,链接,电话号码和交通信息。
它以惊人的准确度完成这一切。NSDataDetector
可以匹配航班号,地址段,奇怪的格式化了的数字,甚至是相对的指示语,如 “下周六五点”。
你可以把它看成是一个有着复杂的令人难以置信的正则表达式匹配,可以从自然语言提取信息(尽管实际的实现细节可能比这个复杂得多)。
NSDataDetector
对象用一个需要检查的信息的位掩码类型来初始化,然后传入一个需要匹配的字符串。像 NSRegularExpression
一样,在一个字符串中找到的每个匹配是用 NSTextCheckingResult
来表示的,它有诸如字符范围和匹配类型的详细信息。然而,NSDataDetector
的特定类型也可以包含元数据,如地址或日期组件。
let string = "123 Main St. / (555) 555-5555"
let types: NSTextCheckingType = .Address | .PhoneNumber
var error: NSError?
let detector = NSDataDetector(types: types.rawValue, error: &error)
detector.enumerateMatchesInString(string, options: nil, range: NSMakeRange(0, (string as NSString).length)) { (result, flags, _) in
println(result)
}
NSError *error = nil;
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeAddress
| NSTextCheckingTypePhoneNumber
error:&error];
NSString *string = @"123 Main St. / (555) 555-5555";
[detector enumerateMatchesInString:string
options:kNilOptions
range:NSMakeRange(0, [string length])
usingBlock:
^(NSTextCheckingResult *result, NSMatchingFlags flags, BOOL *stop) {
NSLog(@"Match: %@", result);
}];
当初始化
NSDataDetector
的时候,确保只指定你感兴趣的类型。每当增加一个需要检查的类型,随着而来的是不小的性能损失为代价。
因为 NSTextCheckingResult
有众多用途,并不能立即清楚其属性是否是特定于 NSDataDetector
。为了供您参考,下面是 NSDataDetector
的各种 NSTextCheckingTypes
匹配,及其相关属性表:
类型 | 属性 |
---|---|
* NSDictionary properties have values at defined keys. |
有点混乱的是,iOS 也定义了 UIDataDetectorTypes
。这些位掩码的值可以设置成一个 UITextView
的 dataDetectorTypes
,来自动检测显示的文本。
UIDataDetectorTypes
和 NSTextCheckingTypes
相同的那些枚举常量其实是不同的(如 UIDataDetectorTypePhoneNumber
和 NSTextCheckingTypePhoneNumber
),他们的整数值并不一样,而且一个中的所有值也并不能在另外一个里面都能找到。可以用以下方法把 UIDataDetectorTypes
转换为 NSTextCheckingTypes
:
func NSTextCheckingTypesFromUIDataDetectorTypes (dataDetectorType: UIDataDetectorTypes) -> NSTextCheckingType {
var textCheckingType: NSTextCheckingType = nil
if dataDetectorType & .Address != nil {
textCheckingType |= .Address
}
if dataDetectorType & .CalendarEvent != nil {
textCheckingType |= .Date
}
if dataDetectorType & .Link != nil {
textCheckingType |= .Link
}
if dataDetectorType & .PhoneNumber != nil {
textCheckingType |= .PhoneNumber
}
return textCheckingType
}
static inline NSTextCheckingType NSTextCheckingTypesFromUIDataDetectorTypes(UIDataDetectorTypes dataDetectorType) {
NSTextCheckingType textCheckingType = 0;
if (dataDetectorType & UIDataDetectorTypeAddress) {
textCheckingType |= NSTextCheckingTypeAddress;
}
if (dataDetectorType & UIDataDetectorTypeCalendarEvent) {
textCheckingType |= NSTextCheckingTypeDate;
}
if (dataDetectorType & UIDataDetectorTypeLink) {
textCheckingType |= NSTextCheckingTypeLink;
}
if (dataDetectorType & UIDataDetectorTypePhoneNumber) {
textCheckingType |= NSTextCheckingTypePhoneNumber;
}
return textCheckingType;
}
现在还对自然语言和结构化数据之间的翻译转换很容易这件事有怀疑吗?其实这并不奇怪,因为有 超级 棒 的 Cocoa 语言 API。
不要让你的用户因为一个程序的疏忽而重新输入信息。在你的应用程序里充分利用 NSDataDetector
解锁那些已经隐藏在众目睽睽下的结构化信息吧。
---
除非<a href="https://nshipster.cn/" target=_blank>另有声明</a>,本文采用知识共享「<a href="https://creativecommons.org/licenses/by-nc/3.0/cn/" target=_blank>署名-非商业性使用 3.0 中国大陆</a>」许可协议授权。