usr213878
usr213878

Reputation: 11

Not all Extended Ascii Characters are being converted to ASCII

Using icu4j-63.1 library we are transliterating native text to ascii character for our project. For few of the cases transliteration is not working as expected.

Please let me know if I am missing something here.

Below code is being used to transliterate

Transliterator any2Latin = Transliterator.getInstance("Any-Latin/UNGEGN; Latin; Title");
Transliterator latin2Ascii = Transliterator.getInstance("Latin-ASCII");
latin2Ascii.transliterate(any2Latin.transliterate(<<Input String>>))

Below are the list of sample text for which transliteration is not working ie., the input and output string both are same.

Upvotes: 1

Views: 176

Answers (0)

Related Questions