vote up 1 vote down star

I'm trying to convert a Perl script to python, and it uses quite a few different packs. I've been able to figure out the lettering differences in the "templates" for each one, but I'm having an issue with understanding how to handle Perl's lack of length declaration.

example:

pack('Nc*',$some_integer,$long_array_of_integers);

I don't see an analog for this "*" feature in struct.pack, on Python. Any ideas on how to convert this to Python?

flag

2 Answers

vote up 4 vote down check

How about this?

struct.pack('>I', some_integer) + struct.pack('b'*len(long_array), *long_array)
link|flag
I like your idea of keeping it all inside the pack() method, but I get "struct.error: pack requires exactly x arguments" and couldn't trick it into unpacking (no pun intended) the array. – ewall Oct 6 at 19:47
@ewall: there was a small typo, fixed the code. – abbot Oct 6 at 20:02
vote up 1 vote down

Perl's pack is using the '*' character similar to in regular expressions--meaning a wildcard for more of the same. Here, of course, it means more signed ints.

In Python, you'd just loop through the string and concat the pieces:

result = struct.pack('>L', some_integer)
for c in long_array_of_integers:
    result += struct.pack('b',c)
link|flag

Your Answer

Get an OpenID
or

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