in reply to Re^3: Interpreting input file having special characters from multiple European languages
in thread Interpreting input file having special characters from multiple European languages

I made a typo in my reply I was using Text::Unidecode in my Perl program, not Text::Unicode.

The CPAN entry for Text::Unidecode suggests modifying Text::Unidecode with special code for any language (such as Polish) whose special characters cause problems for Text::Unidecode. I was hoping to avoid this.

  • Comment on Re^4: Interpreting input file having special characters from multiple European languages

Replies are listed 'Best First'.
Re^5: Interpreting input file having special characters from multiple European languages
by Amphiaraus (Beadle) on Sep 16, 2015 at 18:15 UTC
    In our test environment, an acceptable workaround for Polish special characters is to use codepage cp1250 for the Polish language. The other European languages seem to work fine with cp1252. Our test devices contain special code that touches up any remaining errors in codepage cp1250 (when Polish special characters are being rendered). No further replies are needed, problem is solved.