Lxml css选择通配符

发布于 2024-10-31 03:39:15 字数 501 浏览 2 评论 0原文

如何使用 cssselect 获取所有通配符元素?

例如:

content = """
<table>
<tr id='Awesome1234'><a href="link1"></a></tr>
<tr id='Awesome5678'><a href="link2"></a></tr>
</table>
"""
doc = lxml.html.fromstring(html)
links = lxml.cssselection('tr.Awesome* a')
for link in links:
    print link.get('href')

我希望它输出:

 link1
 link2

Is this possible with cssselect?如果没有,我怎样才能得到这个? (x路径?)

How do I get all the wildcard elements using cssselect?

For example:

content = """
<table>
<tr id='Awesome1234'><a href="link1"></a></tr>
<tr id='Awesome5678'><a href="link2"></a></tr>
</table>
"""
doc = lxml.html.fromstring(html)
links = lxml.cssselection('tr.Awesome* a')
for link in links:
    print link.get('href')

I want it to output:

 link1
 link2

Is this possible with cssselect? If not, how can I get this? (xpath?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

很酷又爱笑 2024-11-07 03:39:15

^= 比较运算符似乎适合您:

tr[id^=Awesome] a

^= comparison operator seems for you:

tr[id^=Awesome] a
辞别 2024-11-07 03:39:15

使用以下 XPath 表达式(不需要 css):

tr[starts-with(@id, 'Awesome')]

此 XPath 表达式选择上下文节点的所有具有 id 属性的 tr 子节点,其字符串值以字符串“Awsome”开头。

Use the following XPath expression (no css is required):

tr[starts-with(@id, 'Awesome')]

This XPath expression selects all tr children of the context node that have an id attribute, whose string value starts with the string 'Awsome'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文