Python 3.4
我有一个unicode转义字符串:
> str = 'blah\\x2Ddude'
我想将此字符串转换为unicode非转义版本'blah-dude'
我该怎么做?
答案 0 :(得分:7)
将其编码为bytes
(使用任何编解码器,utf-8可能有效),然后使用unicode-escape
对其进行解码:
s = 'blah\\x2Ddude'
s.encode().decode('unicode-escape')
Out[133]: 'blah-dude'