gpt4 book ai didi

java - 如何在jsoup中使用OR运算?

转载 作者:行者123 更新时间:2023-12-01 14:59:58 27 4
gpt4 key购买 nike

Elements nextLinks = doc.select(a[href*=https] || a[href*=http]);

我需要连接 HTTP 和 HTTPS 站点。我怎样才能做到这一点?

最佳答案

使用 , 逗号分隔符

应该执行以下操作

Elements nextLinks = doc.select("a[href*=https] , a[href*=http]");

看看这个:Selector syntax这是:Use selector-syntax to find elements

关于java - 如何在jsoup中使用OR运算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13802375/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com