Im looking to transform a piece of XML into a Pipe|Seperated|Value format using XSLT.
However I only wish to select certain nodes to transform into this format.
How would I go about this?
The XML resides within a namespace which can be declared as “x”
Sample XML structure:
<Message>
<Top>
<a></a>
<b></b>
</Top>
<Middle>
<c></c>
</Middle>
<Bottom>
<d></d>
<e></e>
<f></f>
<g></g>
</Bottom>
</Message>
I wish to select the values of nodes: c, e and f.
1 Answer