How do I convert a ruby float/double to high endian order hex with high bytes and low bytes.
EXAMPLE:
start with 99.0
end up with
40 58 C0 00 00 00 00 00
high bytes low bytes
|
feedback
|
|
Well, like Patrick said, it doesn't take a lot to convert past using
So it depends whether you want to unpack it with the high-order byte in the zero index or the low order byte in the zero index:
| |||
|
feedback
|
|
The array class has a pack method:
This gives you a byte string, but converting from that to hex for printing should be trivial. If you want to go the other way, the string class has an unpack method:
| |||
|
feedback
|