如何在Python 3.2中将十六进制字符串转换为signed int?
我能想到的最好的是
h = '9DA92DAB'
b = bytes(h, 'utf-8')
ba = binascii.a2b_hex(b)
print(int.from_bytes(ba, byteorder='big', signed=True))
有更简单的方法吗?无符号是如此简单:int(h,16)
BETWEEN,问题的起源是qazxsw poi
在n位二进制补码中,位有值:
位0 = 20 第1位= 21 位n-2 = 2n-2 位n-1 = -2n-1
但是当无符号时,位n-1的值为2n-1,因此该数字为2n太高。如果设置了位n-1,则减去2n:
itunes persistent id - music library xml version and iTunes hex version
>>> def twos_complement(hexstr,bits):
... value = int(hexstr,16)
... if value & (1 << (bits-1)):
... value -= 1 << bits
... return value
...
>>> twos_complement('FFFE',16)
-2
>>> twos_complement('7FFF',16)
32767
>>> twos_complement('7F',8)
127
>>> twos_complement('FF',8)
-1
对于Python 3(有评论帮助):
import struct
对于Python 2:
h = '9DA92DAB'
struct.unpack('>i', bytes.fromhex(h))
或者如果它是小端:
h = '9DA92DAB'
struct.unpack('>i', h.decode('hex'))
这适用于16位有符号整数,可以扩展为32位整数。它使用了h = '9DA92DAB'
struct.unpack('<i', h.decode('hex'))
的基本定义。另请注意,xor与1是二元否定相同。
2's complement signed numbers.
这是一个可以用于任何大小的十六进制的一般函数:
# convert to unsigned
x = int('ffbf', 16) # example (-65)
# check sign bit
if (x & 0x8000) == 0x8000:
# if set, invert and add one to get the negative value, then add the negative sign
x = -( (x ^ 0xffff) + 1)
并使用它:
import math
# hex string to signed integer
def htosi(val):
uintval = int(val,16)
bits = 4 * (len(val) - 2)
if uintval >= math.pow(2,bits-1):
uintval = int(0 - (math.pow(2,bits) - uintval))
return uintval
这是一个非常晚的答案,但这是一个完成上述功能的功能。这将延长您提供的任何长度。将此部分内容归功于另一个SO答案(我丢失了链接,如果您找到它,请提供)。
h = str(hex(-5))
h2 = str(hex(-13589))
x = htosi(h)
x2 = htosi(h2)