gpt4 book ai didi

ios - 简单的Objective C字符串操作

转载 作者:行者123 更新时间:2023-12-01 17:22:48 24 4
gpt4 key购买 nike

我具有以下格式的文件名

filename_ffffff.png
filename2_cccccc.png
...

如何操作此字符串并将其十六进制值替换为我选择的值。

说新值是 fffccc,它将采用 filename_ffffff.png并将其转换为 filename_fffccc.png
-(NSString *)replace:(NSString *)input with:(NSString *)newHex{
//find in input a patern of 6 char hex followed by dot png
// remove it from the string
// add the newHex followed by png
}

最佳答案

-(NSString *)replace:(NSString *)input with:(NSString *)newHex
{
NSArray *seperated = [input componentsSeparatedByString:@"_"];
return [NSString stringWithFormat:@"%@_%@.png", [seperated objectAtIndex:0], newHex];
}

关于ios - 简单的Objective C字符串操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22755705/

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