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