Tagged Questions

51
votes
4answers
27k views

NSString tokenize in Objective-C

What is the best way to tokenize/split a NSString in Objective-C?
0
votes
1answer
91 views

How to use CFStringTokenizer with Chinese and Japanese?

I'm using the code here to split text into individual words, and it's working great for all languages I have tried, except for Japanese and Chinese. Is there a way that code can be tweaked to ...
0
votes
3answers
413 views

Tokenize NSString twice in Objective-C

I don't have much experience in objective-c, sorry if this is really obvious. What I need is to split a NSString into tokens. The tokens are separated by spaces or by another sign (not a letter). ...