如何解码字节对象的字符串表示?

我有一个字符串,其中包含编码字节:

str1 = "b'Output file \xeb\xac\xb8\xed\x95\xad\xeb\xb6\x84\xec\x84\x9d.xlsx Created'"

我想解码它,但我不能,因为它已成为一个字符串.因此,我想问一下是否有任何方法可以将其转换为

str2 = b'Output file \xeb\xac\xb8\xed\x95\xad\xeb\xb6\x84\xec\x84\x9d.xlsx Created'

这里str2是一个字节对象,我可以轻松解码使用

str2.decode('utf-8')

得到最终结果:

'Output file 문항분석.xlsx Created'

最佳答案 一种简单的方法是假设初始字符串的所有字符都在[0,256]范围内并映射到相同的Unicode值,这意味着它是Latin1编码的字符串.

转换是微不足道的:

str1[2:-1].encode('Latin1').decode('utf8')
点赞