How do I remove double quotes from an NSString. Example:
//theMutableString: \"Hello World\" [theMutableString replaceOccurrencesOfString:@\"\\\"\" withStr
I works perfectly on my end (I copy-pasted your replace line), with both NSMakeRange and the inline struct cast. Are you sure the quotes in your NSString are really the ASCII character 0x22?