如何通过删除 Objective-C 路径中的 2 个文件夹来解析 NSString
我需要在 Objective-C 中解析 NSString ..即如果输入路径字符串是 /a/b/c/d ,我需要解析路径字符串以获得像 /a/b/ 这样的输出 我如何实现它? 输入路径字符串:/a/b/c/d 预期输出路径字符串:/a/b/ 请帮帮我。
谢谢。 苏塞。
I need to parse NSString in Objective-C.. i.e if input path string is /a/b/c/d , i need to parse the path string to get the outout like /a/b/
How do i achieve it?
input path string:/a/b/c/d
expected output path string:/a/b/
Please help me out.
Thank You.
Suse.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
stringByDeletingLastPathComponent
两次:返回
/a/b
。You could use
stringByDeletingLastPathComponent
twice:Returns
/a/b
.怎么样:
How about: