Re: Variation In Decoding Between Encode and XML::LibXML
[email protected] (John Delacour) Fri, 18 Jun 2010 08:24:36 +0100
| Newsgroups | perl.unicode |
|---|---|
| Message-ID | <p06240846c840cf70a2a8@[192.168.1.64]> |
At 08:05 +0100 18/6/10, John Delacour wrote:
> while (<F>){
> my $encoding = find_encoding("utf-8");
That should be
my $encoding = find_encoding("utf-8");
while (<F>){
of course!