show/hide this revision's text 3 edited title

Convert Non-ASCII How can I convert non-ASCII characters encoded in UTF8 to ASCII equivalent ASCII-equivalent in Perl?

show/hide this revision's text 2 Minor fixes

Hi,

I have a perl Perl script that is being called by third parties to send me names of people who have registered my software. One of these parties encodes the names in UTF-8, so I have adapted my script accordingly to decode UTF-8 to ASCII with Encode::decode_utf8(...).

This usually works fine, but every half a year 6 months or so one of the names contains cyrillic, greek or romanian characters, so decoding the name results in garbage characters such as "Подражанская". I have to follow-up with the customer and ask him for a "latin character version" of his name in order to issue a registration code.

So, is there any perl Perl module that can detect whether there are such characters and automatically translates them to their closest ascii ASCII representation if necessary? I

It seems that I can use Lingua::Cyrillic::Translit::ICAO plus Lingua::DetectCharset to handle Cyrillic, but I would prefer something that works with other character sets as well. Thanks,

Adrian

show/hide this revision's text 1

Convert Non-ASCII characters encoded in UTF8 to ASCII equivalent in Perl?

Hi,

I have a perl script that is being called by third parties to send me names of people who have registered my software. One of these parties encodes the names in UTF-8, so I have adapted my script accordingly to decode UTF-8 to ASCII with Encode::decode_utf8(...).

This usually works fine, but every half a year or so one of the names contains cyrillic, greek or romanian characters, so decoding the name results in garbage characters such as "Подражанская". I have to follow-up with the customer and ask him for a "latin character version" of his name in order to issue a registration code.

So, is there any perl module that can detect whether there are such characters and automatically translates them to their closest ascii representation if necessary? I seems that I can use Lingua::Cyrillic::Translit::ICAO plus Lingua::DetectCharset to handle Cyrillic, but I would prefer something that works with other character sets as well. Thanks,

Adrian