Is it possible to get the value of a tag based on the tags name? For example., in the following xml,
<root>
<a>
<b>one</b>
<c>two</c>
</a>
<a>
<b>two</b>
<c>one</c>
</a>
</root>
And when I do the following:
val aNodes = root \\ "a"
aNodes.map(aNode => {
aNode. ??? // How to I get the value of b and c by using its tag name?
})