0

我有这个代码,但它不工作

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

现在我希望能够将找到的第一场比赛var1和第二场比赛var2

4

1 回答 1

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']
于 2013-01-22T03:22:16.697 回答