从 html 解析器获取元素
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 attribute-starts-with 选择器
[attr^=value]
。这将返回所有具有以
test
开头的id
属性的元素。
Use the attribute-starts-with selector
[attr^=value]
.This will return all
<div>
elements with anid
attribute starting withtest
.