我如何在python中获取匹配的正则表达式模式

时间:2013-01-22 03:20:13

标签: python regex

我有这段代码而且无法正常工作

import re
mystring = "This is my test the string to match the stuff"    
p = re.compile(" the ")

现在我希望能够将var1中的第一个匹配项和var2

中的第二个匹配项放在一起

1 个答案:

答案 0 :(得分:4)

你的意思是这样的吗?

In [3]: import re

In [4]: strs= "This is my test the string to match the stuff"

In [5]: p = re.compile(" the ")

In [6]: re.findall(p,strs)
Out[6]: [' the ', ' the ']

In [7]: var1,var2=re.findall(p,strs)

In [8]: var1,var2
Out[8]: (' the ', ' the ')

如果返回的匹配数超过2,则首先对列表进行切片。

var1,var2=[' the ', ' the ',' the '][:2]

在python 3.x上,您可以利用*来获取列表中的其余元素:

In [2]: var1,var2,*extras=[' the ', ' the ','foo','bar']

In [3]: var1
Out[3]: ' the '

In [4]: var2
Out[4]: ' the '

In [5]: extras             #rest of the elements are stored in extras
Out[5]: ['foo', 'bar']