为什么这个正则表达式找不到结果

时间:2012-05-21 02:33:48

标签: python regex

我有一个如下的python代码:我的问题是为什么匹配的变量是['']? (我在regexpal.com中使用了正则表达式,它可以找到正确的结果| Name = A.Johnson |那里)

import re
a = 
'{{Infobox U.S. Cabinet |align=left |clear=yes |Name=A. Johnson |President=Andrew Johnson |President start=1865 |President end=1869 |Vice President=None |Vice President start=1865 |Vice President end=1869 |State=[[William H. Seward]] |State start=1865 |State end=1869 |War=[[Edwin M. Stanton]] |War start=1865 |War end=1868 |War 2=[[John Schofield|John M. Schofield]] |War start 2=1868 |War end 2=1869 |Treasury=[[Hugh McCulloch]] |Treasury start=1865 |Treasury end=1869 |Justice=[[James Speed]] |Justice start=1865 |Justice end=1866 |Justice 2=[[Henry Stanberry]] |Justice start 2=1866 |Justice end 2=1868 |Justice 3=[[William M. Evarts]] |Justice start 3=1868 |Justice end 3=1869 |Post=[[William Dennison (Ohio governor)|William Dennison]] |Post start=1865 |Post end=1866 |Post 2=[[Alexander Randall|Alexander W. Randall]] |Post start 2=1866 |Post end 2=1869 |Navy=[[Gideon Welles]] |Navy start=1865 |Navy end=1869 |Interior=[[John P. Usher]] |Interior date=1865 |Interior 2=[[James Harlan (senator)|James Harlan]] |Interior start 2=1865 |Interior end 2=1866 |Interior 3=[[Orville H. Browning]] |Interior start 3=1866 |Interior end 3=1869 }}'
matched = re.findall("\|?\s*name\s*=(.)*?\|",a,re.I)

3 个答案:

答案 0 :(得分:3)

你需要(.*?),而不是(.)*? - 后者(你拥有的)只捕获一个角色,即使它消耗多于一个角色。即使组本身有重复,捕获组也只会返回一次;所以后者虽然重复了,却捕获了一个字符(.)

如果您使用(.*?)将重复移动到捕获组中,您将在返回时获得多个字符。

答案 1 :(得分:0)

看起来它是如何处理分组的。作为一个更简单的示例,请查看以下代码行的输出之间的差异:

re.findall("c(a)*t", "hi caaat hi")
re.findall("c(a*)t", "hi caaat hi")

看起来你想要的代码更像是:

re.findall("\|\s*name\s*=([^\|\}]*)", a, re.I)

答案 2 :(得分:0)

matched = re.findall("\|?\s*[nN]ame\s*=([a-zA-Z\.\s]+)\|?",a,re.I)
print matched

输出:

['A. Johnson ']