我需要從這樣的節點中提取文本:Jsoup - 提取文本
<div>
Some text <b>with tags</b> might go here.
<p>Also there are paragraphs</p>
More text can go without paragraphs<br/>
</div>
而且我需要建立:
Some text <b>with tags</b> might go here.
Also there are paragraphs
More text can go without paragraphs
Element.text
剛剛返回的div的所有內容。 Element.ownText
- 所有不在孩子內部的元素。兩者都是錯誤的。遍歷children
會忽略文本節點。
是否有辦法迭代元素的內容以接收文本節點。例如。
- 文本節點 - 一些文本
- 節點< B> - 與標籤
- 文本節點 - 可能會去這裏。
- 節點< P> - 還有一些段落
- 文本節點 - 更多的文字可以去無段落
- 節點< BR> - <空>
完美的作品,謝謝! – 2012-04-16 20:49:47