提取部分网址
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,创建一个 NSURL。然后,使用
query
方法获取查询字符串部分:然后您可以使用 NSString 方法来隔离所需的部分。
First of all, create a NSURL. Then, use the
query
method to get the query string part:Then you can use the NSString methods to isolate the needed part.
请参阅
NSString
-rangeOfSubstring:
和-componentsSeparatedByString:
方法。在这种情况下,您可以在“=”处分割字符串。
See the
NSString
-rangeOfSubstring:
and-componentsSeparatedByString:
methods.In this case, you could just split the string at the "=".