Objective C:组件通过正则表达式分隔

发布于 2024-11-04 03:09:31 字数 382 浏览 2 评论 0原文

可能有一些简单的答案,但我无法找到它。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反目相谮 2024-11-11 03:09:31

请改用 -componentsMatchedByRegex:

Use -componentsMatchedByRegex: instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文