[NSString stringByReplacingOccurrencesOfString:@“”“withString:@”“”“];

时间:2012-01-13 09:23:51

标签: iphone ios nsstring

我有NSString并希望以CSV格式保存。因此,我将所有"替换为""。我尝试了以下代码,但编译器报告错误。

newString = [oldstring stringByReplacingOccurrencesOfString:@""" withString:@""""];

其中oldstring为11th ave, "L&T", Khar。 oldstring是根据用户输入设置的。

如何将newString设置为11th ave, ""L&T"", Khar

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:8)

您需要在字符串中转义双引号("):

newString =  [oldString stringByReplacingOccurrencesOfString:@"\"" withString:@"\"\""];