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 properly tokenize Japanese and Chinese as well? The documentation says those languages are supported, but it does not seem to be breaking words in the proper places. For example, when it tokenizes "新しい" it breaks it into two words "新し" and "い" when it should be one (I don't speak Japanese, so I don't know if that is actually correct, but the sample I have says that those should all be one word). Other times it skips over words.

I did try creating Chinese and Japanese locales, while using kCFStringTokenizerUnitWordBoundary. The results improved, but are still not good enough for what I'm doing (adding hyperlinks to vocabulary words).

I am aware of some other tokenizers that are available, but would rather avoid them if I can just stick with core foundation.

link|improve this question

71% accept rate
feedback

1 Answer

If you know that you're parsing a particular language, you should create your CFStringTokenzier with the correct CFLocale (or at the very least, the guess from CFStringTokenizerCopyBestStringLanguage) and use kCFStringTokenizerUnitWordBoundary.

Unfortunately, perfect word segmentation of Chinese and Japanese text remains an open and complex problem, so any segmentation library you use is going to have some failings. For Japanese, CFStringTokenizer uses the MeCab library internally and ICU's Boundary Analysis (only when using kCFStringTokenizerUnitWordBoundary, which is why you're getting a funny break with "新しい" without it).

link|improve this answer
Thank you for your response, 123. As I mentioned in my original question, I did try setting the locale this way, and using kCFStringTokenizerUnitWordBoundary but the results are not yet acceptable. I am checking my results against what is returned by our server, which is actually using mecab under python. I was hoping there might be some further options I might tweak. – arsenius Nov 28 '11 at 16:16
Do you have an example of what's "not yet acceptable"? CFStringTokenizer doesn't expose any of the underlying MeCab/ICU API, so your best bet is probably to compile and bundle them with your app. – 一二三 Nov 29 '11 at 11:44
Here's an example: "歩き 続けて いく うち に" gets returned from the server as "歩き" "続けて" "いく" "うち" "に", but with CFStringTokenizer, "続けて" changes to "続け" and "て". Yesterday I started looking at just using MeCab itself. I may not have any other option. – arsenius Nov 29 '11 at 15:52
feedback

Your Answer

 
or
required, but never shown

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