in reply to Re^2: UTF-8 to Latin1 - unmatched characters?
in thread UTF-8 to Latin1 - unmatched characters?
Here's the code anyway:
use strict; use warnings; use PerlIO::encoding qw( ); use Text::Unidecode qw( unidecode ); use constant FB_UNIDECODE => sub { unidecode(chr($_[0])) }; my $file = '...'; local $PerlIO::encoding::fallback = FB_UNIDECODE; open(my $fh, '>:encoding(iso-8859-1)', $file) or die("Unable to create file \"$file\": $!\n"); print $fh "abc\x{201C}def\x{2013}ghi";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: UTF-8 to Latin1 - unmatched characters?
by uncommon13 (Novice) on Mar 28, 2008 at 14:56 UTC |