我的問題似乎是(...){min, max}的括號問題:
在PCRE時是ok的,在括號中的內容反覆0或多次
'<img src=[^>]*?jpg"><BR>(<font color=red>.*?</font><BR>){0,}'
在python 3.3中的re
上面的式子是可以找到的,但傳回值只有括號內的內容,前面的<img src....><BR>
卻不見了
p=re.compile('<img src=[^>]*?jpg"><BR>(<font color=red>.*?</font><BR>){0,}')
hlist=p.findall(test_string)