0

假设我有:

string = "2 dogs. 4 cats. 9 horses. 7 goats"

我想匹配数字前面的每个单词。

我试过了:

matches = re.search(r"(?<=\d+) \w+", string)

但它不起作用。

4

1 回答 1

4
>>> s = "2 dogs. 4 cats. horses. 7 goats"
>>> import re
>>> re.findall(r'\d+\s(\w+)', s)
['dogs', 'cats', 'goats']
于 2013-06-16T16:59:34.613 回答