Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好吧,让我解释一下……
我在NSString其中存储了一个和一个路径,就像这样(看起来很奇怪):
NSString
/A/B/C/../D/../E/F
这实际上与以下内容相同:
/A/B/E/F
我想要的是将第一种路径格式(其中包含..s)转换为第二种格式。
..
有没有类似的内置 Cocoa 功能?
有任何想法吗?
刚找到!:-)
-(NSString *)stringByStandardizingPath;
返回通过从接收器中删除无关路径组件生成的新字符串。
NSString 类参考。