gpt4 book ai didi

linux - 在 Linux 中使用字典查找和替换单词

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:58:47 27 4
gpt4 key购买 nike

我需要使用字典替换文件中的单词 AAAA:

词典.txt

AXF1
ZCFA
ZCCC

词典约1500字。我需要用 AXF1 替换 AAAA 然后我需要找到下一个 AAAA 并替换为 ZCFA ...知道我该怎么做吗?我发现的所有内容都是如何替换的:

AAA1:AXF1
AAA2:ZCFA
etc...

最佳答案

类似于:

# Read dictionary into memory
dictionary = [line.strip() for line in open('dictionary.txt')]

# Assuming a bit of a wrap around may be required depending on num. of AAAA's
from itertools import cycle
cyclic_dictionary = cycle(dictionary)

# Read main file
other_file = open('filename').read()

# Let's replace all the AAAA's
import re
re.sub('A{4}', lambda L: next(cyclic_dictionary), other_file, flags=re.MULTILINE)

关于linux - 在 Linux 中使用字典查找和替换单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11177529/

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