如何使用Python正则表达式来获取Image src?

时间:2012-06-10 20:24:22

标签: python html regex html-parsing

如何使用正则表达式使用Python

从以下html字符串中获取图像的src

<td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNFqz8ZCIf6NjgPPiTd2LIrByKYLWA&amp;url=http://www.news.com.au/business/spain-victory-faces-market-test/story-fn7mjon9-1226390697278"><img src="//nt3.ggpht.com/news/tbn/380jt5xHH6l_FM/6.jpg" alt="" border="1" width="80" height="80" /><br /><font size="-2">NEWS.com.au</font></a></font></td>

我尝试使用

matches = re.search('@src="([^"]+)"',text)
print(matches[0])

但什么都没有

3 个答案:

答案 0 :(得分:6)

您可以考虑使用BeautifulSoup

,而不是正则表达式
>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup(junk)
>>> soup.findAll('img')
[<img src="//nt3.ggpht.com/news/tbn/380jt5xHH6l_FM/6.jpg" alt="" border="1" width="80" height="80" />]
>>> soup.findAll('img')[0]['src']
u'//nt3.ggpht.com/news/tbn/380jt5xHH6l_FM/6.jpg'

答案 1 :(得分:4)

在正则表达式中丢失@并且它将起作用

答案 2 :(得分:-1)

您可以简化re一点:

match = re.search(r'src="(.*?)"', text)