如何使用转义字符删除字符串的一部分

发布于 2025-01-01 11:02:38 字数 127 浏览 0 评论 0原文

我有一组 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 技术交流群。

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

发布评论

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

评论(4

千里故人稀 2025-01-08 11:02:38

找到'_'字符的位置,然后通过该位置获取子字符串0。请注意,substringToIndex: 不包含索引位置处的字符。

NSRange r = [myString rangeOfString:@"_"];
NSString *res = [myString substringToIndex:r.location];

Find the position of the '_' character, then get a substring 0 through that position. Note that substringToIndex: does not include the character at the index position.

NSRange r = [myString rangeOfString:@"_"];
NSString *res = [myString substringToIndex:r.location];
污味仙女 2025-01-08 11:02:38

看一下 NSString 方法 componentsSeparatedByString:。这将标记一个字符串并返回一个数组。像这样的东西:

NSArray *array = [@"XXXXXXXXX_YYYY_AAAA.ext" componentsSeparatedByString:@"_"];
NSString *firstToken = [array objectAtIndex:0];

Take a look at the NSString method componentsSeparatedByString:. That will tokenize a string and return you an array. Something like this:

NSArray *array = [@"XXXXXXXXX_YYYY_AAAA.ext" componentsSeparatedByString:@"_"];
NSString *firstToken = [array objectAtIndex:0];
来日方长 2025-01-08 11:02:38
NSArray *array = [yourString componentsSeparatedByString:@"_"];
NSString *Xs = [array objectAtIndex:0];
NSArray *array = [yourString componentsSeparatedByString:@"_"];
NSString *Xs = [array objectAtIndex:0];
农村范ル 2025-01-08 11:02:38

尝试在“分割字符串”标题下的“componentsSeparatedByString:”。

NSString 文档

Try componentsSeparatedByString: under the heading Dividing Strings.

NSString Docs

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