I have a string pattern:
"(https?://finance\.sina\.com\.cn/.+?shtml)"
and I use findall method of re to match a content, but the result contains:
'http://finance.sina.com.cn/nmetal/" target="_blank" style="margin-right:7px">黄金</a><a href="http://finance.sina.com.cn/futures/quotes/CL.shtml'
and I have used non-greedy operators, but it still get wrong, where am I wrong?