如何在iphone中的NSString中删除(“”)双引号char?

时间:2012-07-17 09:01:36

标签: iphone ios replace

  

可能重复:
  How can I remove quotes from an NSString?

目前我在iphone应用程序中工作,我在这里使用NSXmlparser解析xml文件,NSString中的城市名称是“墨尔本”,我想删除左右双引号,请任何人帮助这些

由于

我试过这里:

myString = @"Melbourne";
NSString *Replace =[myString stringByReplacingOccurrencesOfString:@""" withString:@""];

1 个答案:

答案 0 :(得分:21)

这应该这样做:

[str stringByReplacingOccurrencesOfString:@"\"" withString:@""];