in reply to Re: Spreadsheet Parsing problem
in thread Spreadsheet Parsing problem

If you have to start talking about the distinctions between bytes, don't refer to the semantic names "\r" and "\n". Instead, start discussing them with hex or octal literal values and specify the binary mode.

On Unix, ("\n" eq "\x0A"). On Windows, perl will memorize it the same way, except treat any ("\n" eq "\x0D\x0A") on input or output, doing conversions if the stream is not binmode().

--
[ e d @ h a l l e y . c c ]