gpt4 book ai didi

python - 如何使用 python 库 re.sub 去除文件的开头?

转载 作者:行者123 更新时间:2023-11-30 22:17:51 25 4
gpt4 key购买 nike

我很高兴问我的第一个Python问题!我想删除下面示例文件的开头(文章第一次出现之前的部分)。为此,我使用 re.sub 库。

下面是我的文件sample.txt:

fdasfdadfa
adfadfasdf
afdafdsfas
adfadfadf
adfadsf
afdaf

article: name of the first article
aaaaaaa
aaaaaaa
aaaaaaa
article: name of the first article
bbbbbbb
bbbbbbb
bbbbbbb
article: name of the first article
ccccccc
ccccccc
ccccccc

以及我的 Python 代码来解析此文件:

for line in open('sample.txt'):
test = test + line

result = re.sub(r'.*article:', 'article', test, 1, flags=re.S)
print result

遗憾的是,此代码仅显示最后一篇文章。代码输出:

article: name of the first article
ccccccc
ccccccc
ccccccc

有人知道如何仅删除文件的开头并显示 3 篇文章吗?

最佳答案

您可以使用itertools.dropwhile达到这样的效果

from itertools import dropwhile

with open('filename.txt') as f:
articles = ''.join(dropwhile(lambda line: not line.startswith('article'), f))

print(articles)

打印

article: name of the first article
aaaaaaa
aaaaaaa
aaaaaaa
article: name of the first article
bbbbbbb
bbbbbbb
bbbbbbb
article: name of the first article
ccccccc
ccccccc
ccccccc

关于python - 如何使用 python 库 re.sub 去除文件的开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49525317/

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