b4swine has asked for the wisdom of the Perl Monks concerning the following question:
$_ = "\x{ff0a}\x{1234}"; open OUT, ">temp.txt"; binmode OUT, ":encoding(UTF-16le)"; print OUT; close OUT; # The output file contains FIVE bytes: 0D 0A FF 34 12 open IN, "<temp.txt"; binmode IN, ":encoding(UTF-16le)"; <IN>; # this line causes: UTF-16LE:Partial character at temp.pl lin +e 12. close IN;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: crlf mess in unicode utf-16le
by ikegami (Pope) on Oct 10, 2006 at 03:18 UTC | |
by xlat (Initiate) on Apr 28, 2015 at 10:40 UTC |