I want to select only the atomic values inside a node. For example, the "here" text in the following:
<a href="">here</a>
When I use Xpath in Java, it returns some sort of object/array, such as
[DomNode[<a href="">here</a>]]
I just want the text only.
Is this possible, and how? Thanks!
You can use the text()
node test. For example, if you want to select the text of all anchors with an href attribute you could do the following XPath query:
//*/a/@href/../text()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With