我的目标是找到“警告总数:2”之后的所有警告匹配。
到目前为止,我尝试了两种方法:
第一种方法给了我贪婪的结果,即只匹配blah4而第二种只匹配blah3。我怎样才能让它与两者相匹配?
我正在使用findall。
答案 0 :(得分:1)
render() {
return (
<div className="well">
hi from well
<button className="btn btn-danger"></button>
</div>
);
}
答案 1 :(得分:0)
您可以尝试在"Total warnings"
上拆分文本文件,然后只处理文件的后半部分:
import re
with open('yourfile.txt') as f:
halves = f.read().split('Total warnings')
regex = re.compile(r'Warning-\[(\S+)\]')
matches = re.findall(regex, halves[1])