Objective C:组件通过正则表达式分隔
可能有一些简单的答案,但我无法找到它。我正在使用 RegexKitLite 来操作我的 iPhone 应用程序中的一些 NSString。我想从网页的整个 HTML 源中获取链接集。我希望它返回链接数组,而不是其余的。
我的代码:
NSString *regex = @"[0-9]{1,}.htm";
for (NSString *match in [sourcePage componentsSeperatedByRegex: regex]{
NSLog (@"%@", match); // Just to debug, will use data later.
}
这里的问题是整个页面以小块形式返回,但完全没有我想要的字符串。 任何帮助表示赞赏!
Probably some easy answer out there, but I wasn't able to find it. I am using RegexKitLite to manipulate some NSStrings in my iPhone app. I want to get the set of links from an entire HTML source from a webpage. I want it to return the array of links, not the rest.
My code:
NSString *regex = @"[0-9]{1,}.htm";
for (NSString *match in [sourcePage componentsSeperatedByRegex: regex]{
NSLog (@"%@", match); // Just to debug, will use data later.
}
The problem here is that the enire page is returned in small pieces, but exactly without the strings I want.
Any help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用
-componentsMatchedByRegex:
。Use
-componentsMatchedByRegex:
instead.