What is the best way to tokenize/split a NSString in Objective-C?
|
3
|
|
|
|
|
|
Found this at http://borkware.com/quickies/one?topic=NSString (useful link):
Hope this helps! Adam |
||
|
|
|
|
Everyone has mentioned |
||
|
|
|
|
Hey ggarber, if your tokenization needs are more complex, check out my open source Cocoa String tokenizing/parsing toolkit: TDParseKit: http://code.google.com/p/todparsekit/ For simple splitting of strings using a delimiter char (like ':'), TDParseKit would definitely be overkill. But again, for complex tokenization needs, TDParseKit is extremely powerful/flexible. |
|||
|
|
|
|
If you just want to split a string, use |
||
|
|
