How do I remove double quotes from an NSString. Example:
//theMutableString: \"Hello World\" [theMutableString replaceOccurrencesOfString:@\"\\\"\" withStr
You can use
string = [string stringByReplacingOccurrencesOfString:@"\"" withString:@"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [string length])];