im trying to do a find and replace on a string to do
tempString =[tempString stringByReplacingOccurrencesOfString:@""" withString:@"""];
but it does not work with the """, is there anyway i can wrap the quote so i can use it?
Have you tried a backslash before the second "
? A la:
tempString = [tempString stringByReplacingOccurrencesOfString:@""" withString:@"\""];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With