提取部分网址

发布于 2024-09-11 03:11:21 字数 482 浏览 0 评论 0原文

我有一个 URL,需要提取其中的一部分。

网址是这样的:
http:// /website.com/get.php?url=http://www.website2.com/index.html?articleID=123456

我需要提取这部分:
http://www.website2.com/index.html?articleID=123456

我该如何在 Objective-C 中做到这一点?

I have an URL and need to extract a part of it.

The url is like this:
http://website.com/get.php?url=http://www.website2.com/index.html?articleID=123456

And I need to extract this part:
http://www.website2.com/index.html?articleID=123456

How would I do this in Objective-C?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

谁许谁一生繁华 2024-09-18 03:11:21

首先,创建一个 NSURL。然后,使用 query 方法获取查询字符串部分:

NSURL    * url = [ NSURL URLWithString: @"... your url ..." ];
NSString * q   = [ url query ];

然后您可以使用 NSString 方法来隔离所需的部分。

First of all, create a NSURL. Then, use the querymethod to get the query string part:

NSURL    * url = [ NSURL URLWithString: @"... your url ..." ];
NSString * q   = [ url query ];

Then you can use the NSString methods to isolate the needed part.

挽容 2024-09-18 03:11:21

请参阅 NSString -rangeOfSubstring:-componentsSeparatedByString: 方法。

在这种情况下,您可以在“=”处分割字符串。

See the NSString -rangeOfSubstring: and -componentsSeparatedByString: methods.

In this case, you could just split the string at the "=".

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