Check out stringByReplacingOccurancesOfString: withString: on NSString. And please try to google before asking questions here, this really was as simple as googling "NSString replace". – Stefan HMar 20 '12 at 19:50
The answer below is correct. Sorry Stefan, I googled the wrong keywords. Maybe this question here helps anybody who also googles wrong ... – DASMar 20 '12 at 19:54
Google Directions API requires "+" instead of " " when requesting "Los+Angeles". – DASMar 20 '12 at 20:04
Yes, user input. I would like to use your code but it does not work properly. – DASMar 20 '12 at 20:11
NSString *firstString = @"This is any NSString with some blanks";
NSString *secondString = [firstString stringByReplacingOccurrencesOfString:@" " withString:@"+"];