/ Published in: Objective C
Just replace a character within a string (e.g. carriage returns).
Expand |
Embed | Plain Text
street = [street stringByReplacingOccurrencesOfString:@" " withString:@"+"];
You need to login to post a comment.
suibhne on 08/02/09
3 people have marked this snippet as a favorite
Just replace a character within a string (e.g. carriage returns).
street = [street stringByReplacingOccurrencesOfString:@" " withString:@"+"];
You need to login to post a comment.