我有一个方案,实现我需要从给定的URLs
中提取NSStrings
,所以我来找到 2种方式这样做(通过帮助所以:))......
这样我就有NSString
这样的
NSString *someString = @"This is a sample of a http:\/\/www.abc.com\/efg.php?EFAei687e3EsA sentence with a URL within it.";
然后我可以使用这两种方法从字符串中获取URL
...
第一路
NSRegularExpression *expression = [NSRegularExpression regularExpressionWithPattern:@"(?i)\\b((?:[a-z][\\w-]+:(?:/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}/)(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:'\".,<>?«»“”‘’]))" options:NSRegularExpressionCaseInsensitive error:NULL];
NSString *match = [someString substringWithRange:[expression rangeOfFirstMatchInString:someString options:NSMatchingCompleted range:NSMakeRange(0, [someString length])]];
NSLog(@"%@", match);
第二路
NSDataDetector *linkDetector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeLink error:nil];
NSArray *matches = [linkDetector matchesInString:someString options:0 range:NSMakeRange(0, [someString length])];
for (NSTextCheckingResult *match in matches) {
if ([match resultType] == NSTextCheckingTypeLink) {
NSURL *url = [match URL];
NSLog(@"found URL: %@", url);
}
}
我的问题是哪一个更好更快,因为我有 400到500 NSStrings
来解析一个实例。
提前谢谢。