【发布时间】:2023-04-05 02:08:02
【问题描述】:
我有一个包含(我相信)latin-1 编码的文件。
但是,我无法将正则表达式与此文件匹配。
如果我 cat 文件,它看起来很好:
但是,我找不到字符串:
In [12]: txt = open("b").read()
In [13]: print txt
<Vw_IncidentPipeline_Report>
In [14]: txt
Out[14]: '\x00 \x00 \x00<\x00V\x00w\x00_\x00I\x00n\x00c\x00i\x00d\x00e\x00n\x00t\x00P\x00i\x00p\x00e\x00l\x00i\x00n\x00e\x00_\x00R\x00e\x00p\x00o\x00r\x00t\x00>\x00\r\x00\n'
In [22]: txt.find("Vw_IncidentPipeline_Report")
Out[22]: -1
In [23]: txt.decode("latin-1")
Out[23]: u'\x00 \x00 \x00<\x00V\x00w\x00_\x00I\x00n\x00c\x00i\x00d\x00e\x00n\x00t\x00P\x00i\x00p\x00e\x00l\x00i\x00n\x00e\x00_\x00R\x00e\x00p\x00o\x00r\x00t\x00>\x00\r\x00\n'
In [25]: txt.decode("utf-16le")
Out[25]: u'\u2000\u2000\u3c00\u5600\u7700\u5f00\u4900\u6e00\u6300\u6900\u6400\u6500\u6e00\u7400\u5000\u6900\u7000\u6500\u6c00\u6900\u6e00\u6500\u5f00\u5200\u6500\u7000\u6f00\u7200\u7400\u3e00\u0d00\u0a00'
如何成功解码字符串,以便在其中找到字符串?
【问题讨论】:
-
文件开头是否有字节序标记(
'\xff\xfe'
或'\xfe\xff'
)? -
除非 OP 编辑了上述脚本,否则文件显然是尖叫的 (a) 以 UTF-16BE 编码 (b) 开头没有 BOM。
标签:
python
encoding
utf-8
character-encoding
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Python正则表达式反对Latin-1字符编码? - Python技术站