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

link|improve this question
feedback

4 Answers

up vote 127 down vote accepted

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|improve this answer
Thanks Adam... :) – mAc Nov 21 '11 at 10:24
6  
As a reference to future readers, I'd like to note that the opposite is [anArray componentsJoinedByString:@":"];. – Ivan Vučica Feb 6 at 18:12
thanks, but how to split a NSString that is separated by more tokens? (If you know what I mean, my English is not very good) @Adam – 11684 Apr 9 at 11:53
feedback

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

link|improve this answer
feedback

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|improve this answer
2  
And, in Mac OS X 10.6 and later, NSString has methods enumerateLinesUsingBlock: and enumerateSubstringsInRange:options:usingBlock:, the latter of which is a block-based version of CFStringTokenizer. developer.apple.com/mac/library/documentation/Cocoa/Reference/…: developer.apple.com/mac/library/documentation/Cocoa/Reference/…: – Peter Hosey Feb 3 '10 at 23:08
feedback

If your tokenization needs are more complex, check out my open source Cocoa String tokenizing/parsing toolkit: ParseKit:

http://parsekit.com

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.

link|improve this answer
Does this still work? I tried it and got a couple errors i am leery of trying to fix myself. – griotspeak Apr 9 '11 at 19:36
-1 is this answer still alive? – Yar Feb 14 at 0:14
Hm? Alive? The ParseKit Project is actively maintained, yes. However, comments here are not the correct place to file bugs on the project. It's on both Google Code and Github if you need to file bugs. – Todd Ditchendorf Feb 14 at 0:57
Sounds good, but now I cannot remove my downvote until you edit the answer somehow (site's rules). Perhaps you could note what versions of what it works on, or whether it uses ARC, etc.? Or you could just add a space somewhere, that's up to you :) – Yar Feb 14 at 1:59
feedback

Your Answer

 
or
required, but never shown