标签: python xpath web-scraping
html文字是:
Tarif : 3 065 € HT 8 605 € HT forfait repas Tarif : 6 570 € HT
在这个例子中我想要总是提取第一次出现(3065)和(6 570) 这是我的代码:
training["price"] = ' '.join(response.xpath('//div[@class="product-price"]//text()').re((r'(\d+)')))
我试过搜索,但有一个错误?请帮忙