vote up 8 vote down star
3

What is the best way to tokenize/split a NSString in Objective-C?

flag

4 Answers

vote up 16 vote down check

Found this at http://borkware.com/quickies/one?topic=NSString (useful link):

NSString *string = @"oop:ack:bork:greeble:ponies";
NSArray *chunks = [string componentsSeparatedByString: @":"];

Hope this helps!

Adam

link|flag
vote up 1 vote down

Everyone has mentioned componentsSeparatedByString: but you can also use CFStringTokenizer (remember that an NSString and CFString are interchangeable) which will tokenize natural languages too (like Chinese/Japanese which don't split words on spaces).

link|flag
vote up 1 vote down

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.

link|flag
vote up 7 vote down

If you just want to split a string, use -[NSString componentsSeparatedByString:]. For more complex tokenization, use the NSScanner class.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.