gpt4 book ai didi

objective-c - 从字符串中提取 URL

转载 作者:搜寻专家 更新时间:2023-10-30 19:53:47 26 4
gpt4 key购买 nike

我的应用程序收到大量文本字符串,这些字符串可能包含也可能不包含字符串中任何位置的 URL。从字符串中提取 URL 的最佳方法是什么?谢谢。

最佳答案

如果您正在使用 Mac 应用程序,Mac OS X 10.6 提供了一个新的 API,让您可以使用拼写检查器检测 URL。你可以这样做。

NSString *s = @"http://example.com"
NSInteger wordCount = 0;
NSOrthography *orthography = nil;
NSArray *checkResults = [[NSSpellChecker sharedSpellChecker] checkString:s range:NSMakeRange(0, [s length]) types:NSTextCheckingTypeLink options:nil inSpellDocumentWithTag:0 orthography:&orthography wordCount:&wordCount];
for (NSTextCheckingResult *result in checkResults) {
NSRange range = result.range;
NSURL *URL = result.URL;
}

关于objective-c - 从字符串中提取 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2443609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com