gpt4 book ai didi

objective-c - 如何从文件名中查找图像数量?

转载 作者:行者123 更新时间:2023-11-29 04:19:49 24 4
gpt4 key购买 nike

我需要从文件名 exp 中知道我有多少张图像:我有图像调用:第一个文件:Splash_10001.jpg最后一个文件:Splash_10098.jpg我想然后插入数组..

 for(int i = 1; i <= IMAGE_COUNT; i++)
{
UIImage* image = [UIImage imageNamed:[NSString stringWithFormat:@"%@%04d.%@",self.firstImageName,i,self.imageType]];
NSLog(@"%d",i);
[imgArray addObject:image];
}

我想用数字 98 替换 IMAGE_COUNT,但我需要从用户发送给我的字符串中获取数字:Splash_10098.jpg我需要将 Splash_10098.jpg 分成: nsstring:Splash_1 int:0098 nsstring:jpg全部 10 倍!

最佳答案

这取决于授予的字符串输入是什么。接下来,我将搜索点并向后查找最大数字。顺便说一句,我只能建议使用多语言 NumberFormatter,而不是依赖默认转换。

  NSString * input = @"Splash_19001.jpg";
NSRange r = [input rangeOfString:@"."];
if(r.location>4){
NSString * numberPart = [input substringWithRange: NSMakeRange(r.location-4,4)];
NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
[nf setNumberStyle:NSNumberFormatterDecimalStyle];
NSNumber * number = [nf numberFromString:numberPart];
int val = [number intValue];
NSLog(@"intValue=%d",val);
}

关于objective-c - 如何从文件名中查找图像数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13107274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com