Tagged Questions
5
votes
4answers
752 views
How to parse kanji numeric characters using ICU?
I'm writing a function using ICU to parse an Unicode string which consists of kanji numeric character(s) and want to return the integer value of the string.
"五" => 5
"三十一" => 31
"五千九百七十二" => 5972
...
2
votes
2answers
369 views
How to convert Japanese half/full width characters using ICU Library
i am not too familiar with java (coming from c++/c#). I have a need for to use java in order to convert some documents from halfwidth japanese charaters to full width.
would someone be kind and ...
2
votes
1answer
411 views
How to classify japanese characters as either kanji or Katakana or Hiragana?
I am working on some application which require sorting of Japans languages.
Sorting of Japanese needs to have Katakana and Kanji converted to Hiragana and then sorted according to the UTF-8 code.
...