0

我还没有玩过正则表达式,正在寻找一些帮助来查找字符串中的部分。

img 标签示例:

<img border="0" alt="background, images, scarica, adobe, art, rainbow, colorful, wallpaper, tutorial, abstract, photoshop, web, pictures, wallpapers" width="192" height="120" class="h_120" src="http://static.hdw.eweb4.com/media/thumbs/1/74/736679.jpg" />

我只是想从一个大的 html 文件中获取 src 的 url。

4

1 回答 1

2

使用BeautifulSoup

from bs4 import BeautifulSoup

soup = BeautifulSoup(html_doc)
page_images = [image["src"] for image in soup.findAll("img")]

使用安装BeautifulSouppip install beautifulsoup4

于 2013-03-07T19:23:42.320 回答