Does anybody know how to replace certain strings withint another string? Like...
NSString *alphabet = @"abcdefghijklmnopqrstuvwxyz";
I want to replace "abc" in the alphabet with "cba". Does anybody know how to do that? Just with normal strings, not with attributed strings.
Thanks!!
NSString *alphabet = @"abcdefghijklmnopqrstuvwxyz";
I want to replace "abc" in the alphabet with "cba". Does anybody know how to do that? Just with normal strings, not with attributed strings.
Thanks!!