vote up 2 vote down star

I need to be able to parse a binary file with Ruby. This file contains chunks of data that are found via a header that includes the file offset and length of each chunk.

How do I get the data out correctly? I've been unable so far to seek around in the file based on the offsets I read out since they come out in strings that I don't know how to convert to a format IO#seek understands.

Any help? A general way to convert the offset and length into something usable (like an integer or something) would be helpful.

flag

2 Answers

vote up 1 vote down check

You want String#unpack.

link|flag
That was it. unpack('L*') is what I needed. – Robert Rouse Jul 23 at 22:57
You should be explicitly using the little-endian or big-endian unpacks instead of native-endian, to keep a bit of portability. – hhaamu Jul 24 at 21:07
vote up 0 vote down

You could also take a look at BitStruct which offers a nice high-level interface for parsing binary data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.