I am trying to replace/remove this:
[\”
from string bump3
NSString *bump5 = [bump3 stringByReplacingOccurrencesOfString:@"[\\"" withString:@""];
ERROR: missing terminating “” character.
could someone please help me out? My brain is so fried from staring at this screen..
UPDATE:
Figured it out by chance and tried it out!
@”\” is a single backslash
@”\\” is a double backslash
so I used
NSString *bump5 = [bump3 stringByReplacingOccurrencesOfString:@”[\\”” withString:@””];
You should escape both
\and"