gpt4 book ai didi

iphone - iPhone编程中如何替换两个不同的字符串

转载 作者:行者123 更新时间:2023-12-03 20:41:17 25 4
gpt4 key购买 nike

我正在我的应用程序中读取 CSV 文件。

我想替换两个不同的字符串并打印为一行。例如:

string1#$string2#$string3####string4

我想用 , 替换 #$,用 \n 替换 ####

并希望在 UILabel 上显示结果。

最佳答案

您可以使用stringByReplacingOccurrencesOfString:withString:方法,如下所示:

NSString *orig = "string1#$string2#$string3####string4";
NSString *res = [orig stringByReplacingOccurrencesOfString:@"#$" withString:@" "];
res = [res stringByReplacingOccurrencesOfString:@"####" withString:@"\n"];

请注意,原始字符串不会更改:相反,会使用您请求的替换生成一个新实例。

关于iphone - iPhone编程中如何替换两个不同的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14214635/

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