Objective-C - 在字符串中查找 URL
给定一个大字符串,创建字符串中包含的所有有效 url 的数组的最佳方法是什么?
Given a large string, what is the best way to create an array of all valid urls which are contained within the string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无需为此使用
RegexKitLite
,因为 iOS 4 Apple 提供了NSDataDetector
(NSRegularExpression
的子类)。您可以像这样简单地使用它(
source
是您的字符串):No need to use
RegexKitLite
for this, since iOS 4 Apple provideNSDataDetector
(a subclass ofNSRegularExpression
).You can use it simply like this (
source
is your string) :我会使用 RegexKitLite 来实现此目的:
打印:(
当然,我在那里使用的 url 正则表达式已简化,但是你明白了。)
I'd use RegexKitLite for this:
Prints:
(Of course, the regex I've used there for urls is simplified, but you get the idea.)
这是提取 url 链接的最佳方法。
输出:
This is best way to extract url link.
Output: