gpt4 book ai didi

python - 使用正则表达式替换单词不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 13:10:01 25 4
gpt4 key购买 nike

帖子文本是推文列表。我想用“URL”替换每条推文中的 url 地址。但是当我打印“post_text”时,我看到没有任何改变,尽管当我打印“tweet”时我看到它已被替换。如何替换 post_text 中的 url 地址???

for tweet in post_text:
tweet=re.sub(r'http\S*', "URL", tweet)

最佳答案

发生此问题是因为您的 tweet 变量是一个从未分配回列表的新变量。

尝试使用列表推导式:

post_text = [re.sub(r'http\S*', "URL", tweet) for tweet in post_text]

或者您可以使用 enumerate 在循环中使用项目索引。如果您的循环比问题中的更复杂,建议这样做:

for i, tweet in enumerate(post_text):
post_text[i] = re.sub(r'http\S*', "URL", tweet)

关于python - 使用正则表达式替换单词不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45725338/

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