As Corion pointed out, binmode is your friend here.

The trick you're trying to use derives from C treating chars as eight-bit signed integers, aka chars. This is C's approach, which isn't in many other languages, among which you find Perl. That's why you're forced to use ord to perform the conversion.

Remember that variables are not "strongly" typed in Perl, so it actually doesn't know what a single character is; moreover, Perl supports implicit conversions between stringed numbers and the numbers they represent (e.g. "123" is also read as 123 in numeric contexts, like in a sum), so you would end up with a problem trying to auto-convert a single-char variable like "1": is it 1 or is it 49? C goes the latter, Perl chooses the former.

As a rule of thumb: Perl is definitively not C (even if it behaves friendly to those who know C :)

Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf

Don't fool yourself.

In reply to Re: Binary Reading Questions by polettix
in thread Binary Reading Questions by Eyeth

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.