QString:Unicode编码解码问题

5

我试图将Unicode字符串转换为标准字符串,但没有成功。

我有:PyQt4.QtCore.QString(u'\xc5\x9f')

我想要:'\xc5\x9f' 注意是str类型而不是unicode,因为我正在使用的库不接受unicode。

这是我尝试过的方法,你可以看到我有多么无助:)

>>> s = QtCore.QString(u'\xc5\x9f')
>>> str(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(128) '
>>> s.toUtf8()
PyQt4.QtCore.QByteArray('\xc3\x85\xc2\x9f')
>>> s.toUtf8().decode("utf-8")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'QByteArray' object has no attribute 'decode'
>>> str(s.toUtf8()).decode("utf-8")
u'\xc5\x9f'
>>> str(str(s.toUtf8()).decode("utf-8"))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(128)

我知道有很多与Unicode相关的问题,但是我找不到这个答案。

我该怎么办?

编辑:

我找到了一种巧妙的方法:

>>> unicoded = str(s.toUtf8()).decode("utf-8")
>>> unicoded
u'\xc5\x9f'
>>> eval(repr(unicoded)[1:])
'\xc5\x9f'

你知道更好的方法吗?

2个回答

8
如果您有一个QString数据类型的Unicode字符串,并且需要将其转换为Python字符串,只需执行以下操作:
unicode(YOUR_QSTRING_STRING)

4

这是您需要的吗?

In [23]: a
Out[23]: u'\xc5\x9f'

In [24]: a.encode('latin-1')
Out[24]: '\xc5\x9f'

In [25]: type(a.encode('latin-1'))
Out[25]: <type 'str'>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接