Objective C 中有类似 parse_url 的东西吗?

发布于 2024-10-10 12:42:07 字数 282 浏览 1 评论 0原文

Objective C 中是否有类似 parse_url() 等价的东西?

我喜欢 PHP 中这个函数的简单性,并且在 iPhone 应用程序中也需要同样的功能。例如: 给定一个网址 http://www.google.com/?someting=somthing

我可以获得一个很好的数据结构,包含主机、协议、基本 url...等,而无需创建解析字符串。

谢谢

Is there there somethings like parse_url() equivalent in Objective C?

I like the simplicity of this function in PHP and need the same thing in an iPhone app. For example:
given a url http://www.google.com/?someting=somthing

I can get a nice data structure with the host, protocol, base url...etc, without having to create parse strings.

Thanks

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

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

发布评论

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

评论(1

独孤求败 2024-10-17 12:42:07

NSURL< /代码>。您可以从字符串创建 NSURL,然后使用 baseURLpathquery 等方法。

There’s NSURL. You can create an NSURL from a string and then use methods like baseURL, path, query, etc.

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