gpt4 book ai didi

iphone - 将 char 替换为 NSString

转载 作者:行者123 更新时间:2023-12-03 18:41:59 24 4
gpt4 key购买 nike

我只想将所有出现的“+”替换为空白“”字符...我尝试了这里列出的一些示例,也使用了 NSSMutableString,但是程序崩溃了......从另一个字符替换一个字符的最佳方法是什么?谢谢

最佳答案

如果您想就地替换为可变字符串 (NSMutableString):

[theMutableString replaceOccurrencesOfString:@"+"
withString:@" "
options:0
range:NSMakeRange(0, [theMutableString length])]

如果你想创建一个新的不可变字符串(NSString):

NSString* newString = [theString stringByReplacingOccurrencesOfString:@"+"
withString:@" "];

关于iphone - 将 char 替换为 NSString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3138994/

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