如何使用 Jsoup 提取单独的文本节点?

发布于 2024-11-30 22:00:15 字数 120 浏览 0 评论 0原文

我有一个这样的元素:

<td> TextA <br/> TextB </td>

如何分别提取 TextA 和 TextB?

I have an element like this :

<td> TextA <br/> TextB </td>

How can I extract TextA and TextB separately?

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

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

发布评论

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

评论(1

彩虹直至黑白 2024-12-07 22:00:15

几种方法。这实际上取决于文档本身以及给定的 HTML 标记是否一致。在此特定示例中,您可以通过 Element#childNodes() 然后单独测试每个节点是否是 TextNode 与否。

例如,

Element td = getItSomehow();

for (Node child : td.childNodes()) {
    if (child instanceof TextNode) {
        System.out.println(((TextNode) child).text());
    }
}

我认为

 TextA 
 TextB 

如果 Jsoup 提供 Element#textNodes() 或像 Element#children() 那样获取子文本节点的东西会很好获取子元素(在示例中将返回
元素)。

Several ways. That really depends on the document itself and whether the given HTML markup is consistent or not. In this particular example you could get the td's child nodes by Element#childNodes() and then test every node individually if it's a TextNode or not.

E.g.

Element td = getItSomehow();

for (Node child : td.childNodes()) {
    if (child instanceof TextNode) {
        System.out.println(((TextNode) child).text());
    }
}

which results in

 TextA 
 TextB 

I think it would be nice if Jsoup offered a Element#textNodes() or something to get the child text nodes like as Element#children() does to get the child elements (which would have returned the <br /> element in your example).

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