使用Python Regex查找给定字符串中的所有“ 10 + 1”模式

我们需要在给定的字符串中找到正则表达式模式10 + 1。为此,我们可以使用python中可用的re模块。这个包有一个叫做find all的方法,它接受正则表达式和我们要搜索的字符串。它为我们提供了该字符串中所有出现的模式。例如,

对于输入字符串-

10000001 hello world 10011 test100000001test.

我们应该得到输出-

10000001
1001
100000001

我们可以使用re包实现它,如下所示:

import re
occ = re.findall("10+1", "10000001 hello world 10011 test100000001test.")
for i in occ:
print(i)

这将给出输出-

10000001
1001
100000001