Objective C 中有类似 parse_url 的东西吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有
NSURL< /代码>
。您可以从字符串创建
NSURL
,然后使用baseURL
、path
、query
等方法。There’s
NSURL
. You can create anNSURL
from a string and then use methods likebaseURL
,path
,query
, etc.