请考虑以下说明:
hxs.select('//span[@class="product-count"]')
它选择可以通过产品计数识别的跨度。它返回正确的html路径:
HtmlXPathSelector xpath='//span[@class="product-count"]' data='<span class="product-count">2160</span>
我想使用正则表达式或任何其他方法提取此特定数字2160。我将其视为字符串,并尝试使用正则表达式获取数字,但这没有用,可能是因为它不是字符串,而是xpath。 预先感谢。
答案 0 :(得分:0)
尝试一下:
number = response.xpath('//span[@class="product-count"]/text()').get()