1

我正在学习美丽的汤。我已成功追踪到我需要的 html 行。我的下一步是从这些行中提取一个 Id 值。

查找这些行的代码如下所示:

object = soup_station.find('img',{'src': re.compile("^Controls")})

如果我现在打印对象,我会得到这个,例如:

<img src="Controls/RiverLevels/ChartImage.jpg?Id=471&amp;ChartType=Histogram" id="StationDetails_Chart1_chartImage" alt="Current river level" />

我想在上面一行中提取的部分是"471"after Id=

我尝试re.search在对象上使用,但似乎对象不是文本。

任何帮助将非常感激!

4

2 回答 2

0

您可以调整以下内容:

s = '<img src="Controls/RiverLevels/ChartImage.jpg?Id=471&amp;ChartType=Histogram" id="StationDetails_Chart1_chartImage" alt="Current river level" />'

from bs4 import BeautifulSoup
import re
from urlparse import urlsplit, parse_qs


soup = BeautifulSoup(s)
# find the node with a src starting with Controls
node = soup.find('img',{'src': re.compile("^Controls")})
# Break up the url in the src attribute
url_split = urlsplit(node['src'])
# Parse out the query parameter from the url
qs = parse_qs(url_split.query)
# Display the value for `Id`
print qs['Id'][0]
于 2013-06-18T21:18:26.090 回答
0

您要确保对对象的源执行正则表达式搜索。你可以试试这个:

import re
ele = soup_station.find('img')
src = ele['src']

match = re.search(r'\?Id=(\d+)', src)
ele_id = match.group(1)
于 2013-06-18T21:23:38.350 回答