Given a block of text that's known to be Chinese and encoded in UTF-8, is there a way to determine if it's Simplified or Traditional?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I don't know if this will work, but I'd try using iconv to see if it will translate between the charsets correctly, comparing the results from the same conversion with //TRANSLIT and //IGNORE. If the two results match, then the charset conversion hasn't encountered any characters that fail to translate, so you should have a match.

$test1 = iconv("UTF-8", "big5//TRANSLIT", $text);
$test2 = iconv("UTF-8", "big5//IGNORE", $text);
if ($test1 == $test2) {
   echo 'traditional';
} else {
   $test3 = iconv("UTF-8", "gb2312//TRANSLIT", $text);
   $test4 = iconv("UTF-8", "gb2312//IGNORE", $text);
   if ($test3 == $test4) {
      echo 'simplified';
   } else {
      echo 'Failed to match either traditional or simplified';
   }
}
link|improve this answer
Interesting, thanks! It seems to definitely be working, although a lot of text is coming back as "neither" (example: "聲音 鳥 樹葉 話 説話 細 又 輕 蝴蝶 請 只有 和 得 聼得到 蜜蜂"). Any ideas? I also had to do @iconv for the 2 TRANSLIT calls to suppress errors. – philfreo Nov 3 '10 at 0:36
3  
You've got some z-variant characters in there that aren't in basic GB-2312, but they are in GB-18030. Try 'gb18030' instead of 'gb2312'. Or if your input is Windows-oriented you may prefer 'cp936' (and 'cp950' instead of 'big5'). – bobince Nov 3 '10 at 21:36
I swapped in gb18030 and all of my test data was recognized. (Cannot be sure of the accuracy though). Thanks! – philfreo Nov 4 '10 at 18:17
feedback

Your Answer

 
or
required, but never shown

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