gpt4 book ai didi

python - 使用 Python 删除小单词

转载 作者:IT老高 更新时间:2023-10-28 20:56:23 26 4
gpt4 key购买 nike

是否可以使用正则表达式来删除文本中的小词?例如,我有以下字符串(文本):

anytext = " in the echo chamber from Ontario duo "

我想删除所有不超过 3 个字符的单词。结果应该是:

"echo chamber from Ontario"

是否可以使用正则表达式或任何其他 python 函数来做到这一点?

谢谢。

最佳答案

我认为这个简单的例子无论如何都不需要正则表达式...

' '.join(word for word in anytext.split() if len(word)>3)

关于python - 使用 Python 删除小单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12628958/

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