没有匹配项============================================== ======

我知道,这是“空白”的问题,如果我在“https”的前面添加空白,那么它可以工作。那么NSDataDetector不能解决这个问题吗?

NSString *originString = @"【mans】下单立减5.00元https://kdt.im/uYMI4r";
NSDataDetector *linkDetector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeLink error:nil];
NSArray *matches1 = [linkDetector matchesInString:originString options:0 range:NSMakeRange(0, [originString length])];

for (NSTextCheckingResult *match in matches1) {
    if ([match resultType] == NSTextCheckingTypeLink) {
        NSURL *url = [match URL];
    }
}

最佳答案

这是NSDataDetector的一个已知问题,如果协议前面有一个空格,即http://或https://,那么它将起作用,否则无效。

例如

    let input = "This is a test with the URL https://www.sharpkits.com to be detected."
    let detector = try! NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    let matches = detector.matches(in: input, options: [], range: NSRange(location: 0, length: input.utf16.count))

for match in matches {
    let url = (input as NSString).substring(with: match.range)
    print(url)
}

输出:
https://www.sharpkits.com

并让let输入=“这是一个检测到URLhttps://www.sharpkits.com的测试。”

输出:URLhttps://www.sharpkits.com

因此,nope无法用NSDataDetector完成

10-08 13:48