vote up 3 vote down star
1

What's the easiest way in python to concatenate string with binary values ?

sep = 0x1
data = ["abc","def","ghi","jkl"]

Looking for result data "abc0x1def0x1ghi0x1jkl" with the 0x1 being binary value not string "0x1".

flag

2 Answers

vote up 9 vote down check

I think

joined = '\x01'.join(data)

should do it. \x01 is the escape sequence for a byte with value 0x01.

link|flag
+1 Great thanks, I tried similar thing but did not think about escaping the characters to create a 'character' ... – stefanB Jun 18 at 12:56
Works great: 8=10^A9=ABC^A10=BBB^A34=D – stefanB Jun 18 at 12:57
vote up 3 vote down

The chr() function will have the effect of translating a variable into a string with the binary value you are looking for.

>>> sep = 0x1
>>> sepc = chr(sep)
>>> sepc
'\x01'

The join() function can then be used to concat a series of strings with your binary value as a separator.

>>> data = ['abc']*3
>>> data
['abc', 'abc', 'abc']
>>> sepc.join(data)
'abc\x01abc\x01abc'
link|flag
This works as well, thanks – stefanB Jun 18 at 13:08

Your Answer

Get an OpenID
or

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