从 html 解析器获取元素

发布于 2024-11-05 20:33:15 字数 410 浏览 1 评论 0原文

我正在使用 JSOUP,并尝试获取以特定 div 标签 id 开头的元素。例如:

<div id="test123">. 

我需要检查元素是否以字符串“test”开头并获取所有元素。

我查看了 http://jsoup.org/cookbook/extracting-data/selector-syntax< /a> 我尝试了多种变体,使用:

doc.select("div:matches(test(*))");

但它仍然不起作用。任何帮助将不胜感激。

I'm using JSOUP, and trying to get the elements which start with a particular div tag id. For example:

<div id="test123">. 

I need to check if the elements starts with the string "test" and get all the elements.

I looked at http://jsoup.org/cookbook/extracting-data/selector-syntax and I tried a multiple variations using:

doc.select("div:matches(test(*))");

But it still didn't work. Any help would be much appreciated.

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

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

发布评论

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

评论(1

吻风 2024-11-12 20:33:15

使用 attribute-starts-with 选择器 [attr^=value]

Elements elements = doc.select("div[id^=test]");
// ...

这将返回所有具有以 test 开头的 id 属性的

元素。

Use the attribute-starts-with selector [attr^=value].

Elements elements = doc.select("div[id^=test]");
// ...

This will return all <div> elements with an id attribute starting with test.

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