How can I convert "1234567890" to {0x12, 0x34, 0x56, 0x78, 0x90} in Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Try this:
|
|||
|
|
Ruby 1.8 -
Ruby 1.9 / Ruby 1.8 -
|
|||||||||
|
|
||||
|
|
|
Assuming you have a well-formed hexadecimal string (pairs of hex digits), you can pack to binary, or unpack to hex, simply & efficiently, like this:
|
|||
|
|
|
If you have a string containing numbers and you want to scan each as a numeric hex byte, I think this is what you want:
|
|||||
|
|
You might find it helpful to take a look here at this post |
|||
|
|