爬取元素为<span class="s-fc-blue" id="resultHistory">1胜0平9负</span>中间的文本
时间: 2023-02-09 16:02:42 浏览: 124
取文本中间
可以使用爬虫框架如 BeautifulSoup 或 PyQuery,对 HTML 代码进行解析,然后用 css selector 或 xpath 来查找元素。
示例代码:
```
from bs4 import BeautifulSoup
html = '<span class="s-fc-blue" id="resultHistory">1胜0平9负</span>'
soup = BeautifulSoup(html, 'html.parser')
result = soup.select_one('#resultHistory').text
print(result)
```
结果为:
1胜0平9负
上面是使用beautifulsoup解析HTML,也可以使用 PyQuery 解析
```
from pyquery import PyQuery as pq
html = '<span class="s-fc-blue" id="resultHistory">1胜0平9负</span>'
doc = pq(html)
result = doc('#resultHistory').text()
print(result)
```
结果为:
1胜0平9负
阅读全文