hexadecimal string to byte array in python

前端 未结 8 1981
孤城傲影
孤城傲影 2020-11-22 11:53

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 co

8条回答
  •  我在风中等你
    2020-11-22 12:42

    Suppose your hex string is something like

    >>> hex_string = "deadbeef"
    

    Convert it to a string (Python ≤ 2.7):

    >>> hex_data = hex_string.decode("hex")
    >>> hex_data
    "\xde\xad\xbe\xef"
    

    or since Python 2.7 and Python 3.0:

    >>> bytes.fromhex(hex_string)  # Python ≥ 3
    b'\xde\xad\xbe\xef'
    
    >>> bytearray.fromhex(hex_string)
    bytearray(b'\xde\xad\xbe\xef')
    

    Note that bytes is an immutable version of bytearray.

提交回复
热议问题