如何使用转义字符删除字符串的一部分
我有一组 NSString 表示目录中文件的名称。这些名称的结构如下:
XXXXXXXXX_YYYY_AAAA.ext
所有由“_”分隔的部分都是可变长度的,我只会有第一个。 如何将第一部分与另一部分分开?
I have a set of NSString representing the names of the files in a directory. These names are structured this way:
XXXXXXXXX_YYYY_AAAA.ext
All the sections separated by "_" are of variable length and I would only have the first.
How can I separate the first part from the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
找到
'_'
字符的位置,然后通过该位置获取子字符串0。请注意,substringToIndex:
不包含索引位置处的字符。Find the position of the
'_'
character, then get a substring 0 through that position. Note thatsubstringToIndex:
does not include the character at the index position.看一下 NSString 方法
componentsSeparatedByString:
。这将标记一个字符串并返回一个数组。像这样的东西:Take a look at the NSString method
componentsSeparatedByString:
. That will tokenize a string and return you an array. Something like this:尝试在“分割字符串”标题下的“componentsSeparatedByString:”。
NSString 文档
Try componentsSeparatedByString: under the heading Dividing Strings.
NSString Docs