If you want to replace with a mutable string (NSMutableString) in place:
[theMutableString replaceOccurrencesOfString:@"+" withString:@" " options:0 range:NSMakeRange(0, [theMutableString length])]
If you want to create a new immutable string (NSString):
NSString* newString = [theString stringByReplacingOccurrencesOfString:@"+" withString:@" "];
kennytm
source share