gpt4 book ai didi

用于查找字符串中所有单词的 Python 正则表达式

转载 作者:太空狗 更新时间:2023-10-29 22:21:34 24 4
gpt4 key购买 nike

<分区>

您好,我是正则表达式的新手,我刚开始使用 Python。我坚持从英语句子中提取所有单词。到目前为止,我有:

import re

shop="hello seattle what have you got"
regex = r'(\w*) '
list1=re.findall(regex,shop)
print list1

这给出了输出:

['hello', 'seattle', 'what', 'have', 'you']

如果我将正则表达式替换为

regex = r'(\w*)\W*'

然后输出:

['hello', 'seattle', 'what', 'have', 'you', 'got', '']

而我想要这个输出

['hello', 'seattle', 'what', 'have', 'you', 'got']

请指出我哪里出错了。

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