Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hmm???

#!perl -lw $x = "\x55\xAA\x55\xAA";; substr( $x, $_, 1 ) = chr( ord( substr( $x, $_, 1 )) << 1 ) for 0 .. 3 +;; my $ox = $x; print unpack 'b*', $x;; print unpack 'U0b*', $x;; print unpack 'C0b*', $x;; __END__ Character in 'b' format wrapped in unpack at - line 5. Character in 'b' format wrapped in unpack at - line 5. 01010101001010100101010100101010 0100001101010101101000110010100101000011010101011010001100101001 Character in 'b' format wrapped in unpack at - line 7. Character in 'b' format wrapped in unpack at - line 7. 01010101001010100101010100101010

Hmm??

$ perl #!perl -lw $x = "\x55\xAA\x55\xAA";; substr( $x, $_, 1 ) = chr( ord( substr( $x, $_, 1 )) << 1 ) for 0 .. 3 +;; my $ox = $x; use bytes; print unpack 'b*', $x;; print unpack 'U0b*', $x;; print unpack 'C0b*', $x;; __END__ 0100001101010101101000110010100101000011010101011010001100101001 1100001101000001010000110101010111000011101000010100001100101001110000 +1101000001010000110101010111000011101000010100001100101001 0100001101010101101000110010100101000011010101011010001100101001

In reply to Re: Character in 'b' format wrapped in unpack ( U0unicode mode C0character mode) by Anonymous Monk
in thread Character in 'b' format wrapped in unpack by BrowserUk

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-19 07:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found