How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:28:50Z http://stackoverflow.com/feeds/question/638060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/638060/how-can-i-convert-non-ascii-characters-encoded-in-utf8-to-ascii-equivalent-in-per 3 How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl? Adrian Grigore 2009-03-12T10:40:45Z 2009-03-12T19:20:28Z <p>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(...). </p> <p>This usually works fine, but every 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. </p> <p>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? </p> <p>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. </p> http://stackoverflow.com/questions/638060/how-can-i-convert-non-ascii-characters-encoded-in-utf8-to-ascii-equivalent-in-per/638143#638143 0 Answer by Manni for How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl? Manni 2009-03-12T11:05:37Z 2009-03-12T11:05:37Z <p>If you have to deal with UTF-8 data that are not in the ascii range, your best bet is to change your backend so it doesn't choke on utf-8. How would you go about transliterating kanji signs?</p> http://stackoverflow.com/questions/638060/how-can-i-convert-non-ascii-characters-encoded-in-utf8-to-ascii-equivalent-in-per/638820#638820 10 Answer by mirod for How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl? mirod 2009-03-12T14:21:35Z 2009-03-12T14:21:35Z <p>I believe you could use <a href="http://search.cpan.org/dist/Text-Unidecode/" rel="nofollow">Text::Unidecode</a> for this, it is precisely what it tries to do.</p> http://stackoverflow.com/questions/638060/how-can-i-convert-non-ascii-characters-encoded-in-utf8-to-ascii-equivalent-in-per/638833#638833 0 Answer by Nemanja Trifunovic for How can I convert non-ASCII characters encoded in UTF8 to ASCII-equivalent in Perl? Nemanja Trifunovic 2009-03-12T14:25:02Z 2009-03-12T14:25:02Z <p>If you get cyrilic text there is no "closest ASCII representation" for many characters.</p>