BeautifulSoup如何根据Style中是属性选择元素

BeautifulSoup如何根据Style中是属性选择元素_第1张图片
如题,我为了提取文中红色的文字标记,必须要使用CSS选择器选中对应的标签。但是对应的Span标签中并没有标签可以使用,
使用

soup.select("span[style='color:rgb(255,0,0);']")
或者
soup.select("span[style='color:red;']")

并没有办法选中对应的 s p a n span span标签
在这里插入图片描述
我使用百度查询了几乎大半个晚上,也没有解决方法。最终在stackflow上找到了解决方法。

soup.find('span', style=lambda value: value and 'color' in value and '255' in value)

或者

import re
soup.find('span', style=re.compile(r'.*rgb\(255.*?')))

或者

soup.select(''span[style*="rgb(255"]')

原文链接 :
https://stackoverflow.com/questions/35140158/using-beautifulsoup-to-find-tag-with-two-specific-styles

希望大家可以更方便找到答案

你可能感兴趣的:(css,html)