Quantcast
Channel: xsl: Copy the entire xml except a parent node but keep its child node - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Cesar Hermosillo for xsl: Copy the entire xml except a parent node but keep its child node

$
0
0

from that code if you want to remove the node InqRs just apply the following xsl :

<xsl:output method="xml"/><xsl:template match="node()"><xsl:copy><xsl:copy-of select="@*"/><xsl:apply-templates/></xsl:copy></xsl:template><xsl:template match="PAN"><LoginID><xsl:copy-of select="."/></LoginID></xsl:template>

you will get something like this

<InqRs><LoginID> <PAN> 4506445 </PAN>           </LoginID><RqUID>93</RqUID><Dt>90703195116</Dt><CaptureDate>704</CaptureDate><ApprovalCode>934999</ApprovalCode><StatusCode>000</StatusCode><List> <Count>9</Count> <AddDataFlag>N</AddDataFlag> <Use>C</Use> <DetRec> <ID>007237048637</ID> <Type1>62</Type1><Qual/> <ID>0010</ID> <Status>1</Status> <InqFlag>Y</InqFlag> </DetRec> </List><InqRs>

I hope this help you


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>