2

我正在解析一个包含很多引号的 xml 链接,我想替换它。我已经使用了这段代码,但由于引用,它不会运行。那你能帮帮我吗?

NSString *delete1 = [currentStringValueImage stringByReplacingOccurrencesOfString:@" "application" " withString:@""];

提前致谢。

4

1 回答 1

3

在您的字符串中使用 '\' 转义引号符号:

NSString *delete1 = [currentStringValueImage stringByReplacingOccurrencesOfString:@" \"application\" " withString:@""];
于 2012-04-12T06:47:14.437 回答