I have a long Hex string that represents a series of values of different types. I wish to convert this Hex String into a byte array so that I can shift each value out and convert it into its proper data type.
|
Suppose your hex string is something like "deadbeef"Convert it to a string:
Convert it to a byte array:
Convert it to a list of byte values:
or, possibly:
if on a recent enough Python. However, it's possible that by “hex string” you just mean a string with unprintable characters. "\x12\x45\x00AB"In that case, use the options above ignoring the |
||||
|
There is a built-in function in bytearray that does what you intend.
It returns a bytearray and it reads hex strings with or without space separator. |
|||
|
provided I understood correctly, you should look for binascii.unhexlify
|
|||
|
You should be able to build a string holding the binary data using something like:
This is probably not the fastest way (many string appends), but quite simple using only core Python. |
|||
|
Assuming you have a byte string like so "\x12\x45\x00\xAB" and you know the amount of bytes and their type you can also use this approach
As I specified little endian (using the '<' char) at the start of the format string the function returned the decimal equivalent. 0x12 = 18 0x45 = 69 0xAB00 = 43776 B is equal to one byte (8 bit) unsigned H is equal to two bytes (16 bit) unsigned More available characters and byte sizes can be found here The advantages are.. You can specify more than one byte and the endian of the values Disadvantages.. You really need to know the type and length of data your dealing with |
|||
|
A good one liner is:
This will iterate over each char in the string and run it through the ord() function. Only tested on python 2.6, not too sure about 3.0+. -Josh |
|||||||||||
|