in reply to Re^2: convert a string(which contains the contents of a file) into UTF-8 encoding
in thread convert a string(which contains the contents of a file) into UTF-8 encoding
#!/usr/bin/perl use strict; use warnings; @ARGV == 2 or die("usage: latin_to_utf8 infile outfile\n"); my ($qfn_in, $qfn_out) = @ARGV; open(my $fh_in, '<:encoding(iso-8859-1)', $qfn_in) or die("Can't open \"$qfn_in\": $!\n"); open(my $fh_out, '>:encoding(UTF-8)', $qfn_out) or die("Can't create \"$qfn_out\": $!\n"); print $fh_out $_ while <$fh_in>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: convert a string(which contains the contents of a file) into UTF-8 encoding
by perlkamal (Initiate) on Oct 18, 2009 at 23:55 UTC | |
by ikegami (Patriarch) on Oct 20, 2009 at 01:23 UTC |