NSString *col1 = [aBook.name stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@" \n\t"]];
NSLog(@"column1: %@", col1); //output:- ABC+Company
This is my xml data output.
It comes with ‘+’ mark. How can i decode this?
Could you please help me?
You can also replace the plus signs with spaces, if that’s what you’re after: