in reply to Re: binary parsing
in thread binary parsing

It seems that the output is different on an Win32 XP system...
perl -le"print length unpack "A", "\n";" 1
Could you please direct me in which side of the documentation neighborhood that this is reported ?


Excellence is an Endeavor of Persistence. A Year-Old Monk :D .

Replies are listed 'Best First'.
Re^3: binary parsing
by ikegami (Patriarch) on Jan 30, 2011 at 04:44 UTC

    Your quoting is broken. You are doing

    >perl -le"print length unpack 'A', \'n';" 1

    which is the same as

    >perl -le"print length unpack 'A', 'S';" 1

    If you fix the quoting, you get the correct result.

    >perl -le"print length unpack 'A', qq{\n};" 0

    pack says "When unpacking, «A» strips trailing whitespace and nulls".