Can someone explain why how the result for the following unpack is computed?
"aaa".unpack('h2H2') #=> ["16", "61"]
In binary, 'a' = 0110 0001. I'm not sure how the 'h2' can become 16 (0001 0000) or 'H2' can become 61 (0011 1101).
|
|
Can someone explain why how the result for the following unpack is computed?
In binary, 'a' = 0110 0001. I'm not sure how the 'h2' can become 16 (0001 0000) or 'H2' can become 61 (0011 1101). |
||
|
|
|
|
Not 16 - 1 then 6. h is giving the hex value of each nibble, so you get 0110 (6), then 0001 (1), depending on whether its the high or low bit you're looking at. Use the high nibble first and you get 61, which in hex for 91 - the value of 'a' |
|||
|
|
|
|
Check out the Programming Ruby reference on unpack. Here's a snippet:
And the relevant characters from your example:
|
||
|
|
|
|
The hex code of char Template Also see the perl documentation. |
|||
|
|