首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

在BeautifulSoup中从跨度类中提取数据/价格

在BeautifulSoup中,可以使用CSS选择器或正则表达式来从跨度类中提取数据或价格。

如果要使用CSS选择器,可以使用.find().find_all()方法来查找具有特定类的元素。例如,如果要提取跨度类为"price"的元素,可以使用以下代码:

代码语言:txt
复制
from bs4 import BeautifulSoup

# 假设html是包含跨度类的HTML代码
html = """
<div>
    <span class="price">100</span>
    <span class="price">200</span>
    <span class="price">300</span>
</div>
"""

soup = BeautifulSoup(html, 'html.parser')
prices = soup.find_all('span', class_='price')

for price in prices:
    print(price.text)

输出结果将是:

代码语言:txt
复制
100
200
300

如果要使用正则表达式来提取数据或价格,可以使用.find().find_all()方法的text参数,并结合正则表达式进行匹配。例如,如果要提取跨度类中的数字,可以使用以下代码:

代码语言:txt
复制
import re
from bs4 import BeautifulSoup

# 假设html是包含跨度类的HTML代码
html = """
<div>
    <span class="price">Price: $100</span>
    <span class="price">Price: $200</span>
    <span class="price">Price: $300</span>
</div>
"""

soup = BeautifulSoup(html, 'html.parser')
prices = soup.find_all('span', class_='price')

for price in prices:
    match = re.search(r'\d+', price.text)
    if match:
        print(match.group())

输出结果将是:

代码语言:txt
复制
100
200
300

这是使用BeautifulSoup从跨度类中提取数据或价格的基本方法。根据具体的需求和HTML结构,可能需要进一步调整代码。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券