I have a node within a xml file as below and I just want to find the node and pull in the node and all the xml, attributes and values just as is. I tried
But all I get are the values within the elements...how do I just get the node and all of it's contents, including the xml, attributes, elements and values just as is...this is the xml?
Thanks much.
Code:
<xsl:value-of select="//my_matches"/>
Code:
<my_matches>
<count>2</count>
<matches>
<match>
<key type="1">xxxxxx</key>
</match>
<match>
<key type="2">zzzzzz</key>
</match>
</matches>
</my_matches>
Thanks much.