我想将 unicode 字符串转换为 iso-8859-15。这些字符串包括u"\u2019"
(右单引号参见http://www.fileformat.info/info/unicode/char/2019/index.htm)字符,它不是 iso-8859-15 字符集的一部分。
在 Python 中,如何规范化 unicode 字符以匹配 iso-8859-15 编码?
我查看了 unicodedata 模块但没有成功。我设法完成这项工作
s.replace(u"\u2019", "'").encode('iso-8859-15')
但我想找到一种更通用、更清洁的方法。
谢谢你的帮助