gpt4 book ai didi

python - 使用 re.findall 查找前 x 个匹配项

转载 作者:太空狗 更新时间:2023-10-29 21:20:56 27 4
gpt4 key购买 nike

我需要限制 re.findall 找到前 3 个匹配项然后停止。

例如

text = 'some1 text2 bla3 regex4 python5'
re.findall(r'\d',text)

然后我得到:

['1', '2', '3', '4', '5']

我想要:

['1', '2', '3']

最佳答案

re.findall 返回一个列表,所以最简单的解决方案就是使用 slicing :

>>> import re
>>> text = 'some1 text2 bla3 regex4 python5'
>>> re.findall(r'\d', text)[:3] # Get the first 3 items
['1', '2', '3']
>>>

关于python - 使用 re.findall 查找前 x 个匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23185328/

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