URLs
私は与えられたから抽出する必要があることを実装するシナリオを持っているので、そうする2つの方法NSStrings
を見つけるようになりました(SOの助けによって:))…
私がこのようなものを持っているNSString
ように
NSString *someString = @"This is a sample of a http:\/\/www.abc.com\/efg.php?EFAei687e3EsA sentence with a URL within it.";
そして、これらの両方の方法を使用しURL
て、文字列から抜け出すことができます...
第1の方法
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);
2番目の方法
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
前もって感謝します。