gpt4 book ai didi

python - 在逗号上拆分字符串但忽略双引号内的逗号?

转载 作者:IT老高 更新时间:2023-10-28 21:37:46 27 4
gpt4 key购买 nike

我有一些如下所示的输入:

A,B,C,"D12121",E,F,G,H,"I9,I8",J,K

逗号分隔的值可以是任何顺序。我想用逗号分隔字符串;但是,在双引号内的情况下,我需要它既忽略逗号又去掉引号(如果可能)。所以基本上,输出将是这个字符串列表:

['A', 'B', 'C', 'D12121', 'E', 'F', 'G', 'H', 'I9,I8', 'J', 'K']

我看过其他一些答案,我认为正则表达式是最好的,但我很难想出它们。

最佳答案

Lasse 是对的;它是一个逗号分隔值文件,所以你应该使用 csv module .一个简单的例子:

from csv import reader

# test
infile = ['A,B,C,"D12121",E,F,G,H,"I9,I8",J,K']
# real is probably like
# infile = open('filename', 'r')
# or use 'with open(...) as infile:' and indent the rest

for line in reader(infile):
print line
# for the test input, prints
# ['A', 'B', 'C', 'D12121', 'E', 'F', 'G', 'H', 'I9,I8', 'J', 'K']

关于python - 在逗号上拆分字符串但忽略双引号内的逗号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8069975/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com