What's the best way to iterate over all the chars in an NSString? Would you want to loop over the length of the string and use the method.
[aNSString characterAtIndex:index];
or would you want to user a char buffer based on the NSString?
|
What's the best way to iterate over all the chars in an NSString? Would you want to loop over the length of the string and use the method.
or would you want to user a char buffer based on the NSString? |
|||
|
|
|
I would definitely get a char buffer first, then iterate over that.
|
|||||||||||
|
|
Neither. The "Optimize Your Text Manipulations" section of the "Cocoa Performance Guidelines" in the Xcode Documentation recommends:
See this Stack Overflow answer on How to remove whitespace from right end of |
||||
|
|