vote up -3 vote down star

I want to convert strings to bit-fields.Also,convert them to binary and then use. Need help with this..help me ..

flag

27% accept rate
Duplicate: stackoverflow.com/questions/385572/… – S.Lott Dec 22 '08 at 12:35

2 Answers

vote up 2 vote down

I think the struct module is what you're after.

Example of usage:

>>> from struct import *
>>> pack('hhl', 1, 2, 3)
'\x00\x01\x00\x02\x00\x00\x00\x03'
>>> unpack('hhl', '\x00\x01\x00\x02\x00\x00\x00\x03')
(1, 2, 3)
>>> calcsize('hhl')
8
link|flag
vote up 0 vote down

they're all binary already... Which language are we talking about?

I'd start by looking at the string as an array of characters and working with each character individually.

link|flag
@Cogsy - Language is Python. Question not really sensible. – S.Lott Dec 22 '08 at 12:43

Your Answer

Get an OpenID
or

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