标签: python regex css-selectors web-crawler scrapy
目前,我正在使用Scrapy。
匹配时选择器工作正常
<xxx> something to match </xxx>
但我想要匹配
<xxx name="something I want match"> xxx </xxx>
我想要匹配的是元素标记内部。
我知道Regex是一个解决方案。有没有更简单的方法。
答案 0 :(得分:1)
我找到了两种方法:
1.sel.xpath('//baseTag/@attrName') 2.sel.css('baseTag::attr(attrName)')
see more