我有一个像这样的字符串数组:
一些标题## DD-MM-JJJJ ##有些文字在这里## img1.jpg ## img2.jpg 我想把这个字符串拆分为##。我的代码如下:
with open("raw_news.txt", "r") as f:
raw = []
for line in f:
line.strip()
line.split('##')
raw.append(line)
它不起作用。我只收到单个字母。 re.split也没有做到这一点。我在这里真的很茫然,谁知道我做错了什么?
答案 0 :(得分:6)
问题在于您忽略了split()
的返回值:
raw.append(line.split('##'))
例如:
In [5]: s = "Some Title##DD-MM-JJJJ##Some Text goes here##img1.jpg##img2.jpg"
In [6]: s.split("##")
Out[6]: ['Some Title', 'DD-MM-JJJJ', 'Some Text goes here', 'img1.jpg', 'img2.jpg']