gpt4 book ai didi

java - Jsoup 在标记后选择文本

转载 作者:搜寻专家 更新时间:2023-10-30 21:17:00 26 4
gpt4 key购买 nike

我想使用 jsoup 在每个标签后提取文本。有什么方法可以直接选择它,还是我必须对整个事情执行 .substring?

<div>
<a href="#"> I don't want this text </a>
**I want to retrieve this text**
</div>

最佳答案

public static void main(String... args) throws IOException {

Document document = Jsoup.parse("<div>"
+ "<a href=\"#\"> I don't want this text </a>"
+ "**I want to retrieve this text**" + "</div>");

Element a = document.select("a").first();

Node node = a.nextSibling();
System.out.println(node.toString());
}

输出

**I want to retrieve this text**

关于java - Jsoup 在标记后选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16219094/

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