in reply to Encoding and decoding a Unicode
I tried the below code for decoding but still got empty lines.
Some unexpected empty lines or only empty lines?
Empty lines after (almost) all lines you read? chomp!
#!/usr/bin/perl my $input=$ARGV[0];
Add use strict; and use warnings;. Ignoring perl's debugging aids just wastes everyone's time.
And finally, whenever you think that perl has encoding problems, show us a hex dump of the input and the output.
Alexander
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Encoding and decoding a Unicode
by suno (Acolyte) on Jul 10, 2015 at 16:26 UTC |