我有一个CSV文件,在某些字段中有双引号字符。在使用Python解析时,它开始忽略这些引号之间的分隔符。例如:
5695|258|03/21/2012| 15:16:02.000|info|Microsoft-Windows-Defrag|shrink estimation, (C:)|36|"6ybSr: c{q6: |Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
5770|258|03/24/2012| 04:21:02.000|info|Microsoft-Windows-Defrag|boot optimization, (C:)|36|00 00 00 00 d3 03 00 00 ae 03 00 00 00 00 00 00 22 b6 30 df 64 79 c7 f6 e2 6c 1c 00 00 00 00 00 00 00 00 00|Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
5843|258|03/27/2012| 07:38:36.000|info|Microsoft-Windows-Defrag|boot optimization, (C:)|36|jbg54t5t"gfb:*&hgfh|Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
因此,它将两个双引号之间的所有内容读作单个字段:
5695|258|03/21/2012| 15:16:02.000|info|Microsoft-Windows-Defrag|shrink estimation, (C:)|36|"6ybSr: c{q6: |Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
^
5770|258|03/24/2012| 04:21:02.000|info|Microsoft-Windows-Defrag|boot optimization, (C:)|36|00 00 00 00 d3 03 00 00 ae 03 00 00 00 00 00 00 22 b6 30 df 64 79 c7 f6 e2 6c 1c 00 00 00 00 00 00 00 00 00|Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
5843|258|03/27/2012| 07:38:36.000|info|Microsoft-Windows-Defrag|boot optimization, (C:)|36|jbg54t5t"gfb:*&hgfh|Application|WKS-WIN732test.test.local|http://schemas.microsoft.com/win/2004/08/events/event|0x0080000000000000|0|0||0|0|C:\Users\test\EventLog\win7-32-test-c-drive\Application.evtx
^
(参见上例中的插入符号(^
))。
如何让它忽略双引号?
CAVEAT:我不想将整个文件读入RAM并替换该字符。解决方案必须在读取读取器的行时工作。
分隔符是管道。我使用标准CSV技术读取它并使用已知编码对其进行解码:
import csv
known_encoding = 'utf-8' # for mwe, real code fetches for each file
with open(self.current_file.file_path, 'rb') as f:
reader = csv.reader(f, delimiter='|')
for row in reader:
row = [s.decode(known_encoding) for s in row]
# do stuff with data in row
答案 0 :(得分:4)
我猜测您的CSV文件从不包含带引号的字段,因此您可以使用quoting
参数将其关闭:
csv.reader(f, delimiter='|', quoting=csv.QUOTE_NONE)
答案 1 :(得分:2)
您可以将quoting
设置为csv.QUOTE_NONE
:
import csv
with open('my_file', 'r') as f:
csvreader = csv.reader(f, delimiter='|', quoting=csv.QUOTE_NONE)
....