vote up 2 vote down star

HI, I'm new with stylesheets and looking for a solution to copy the entire XML document but remove a parent node from an xml document. However this parent node also has a child that i'd like to keep.

The node to remove is <LoginID> and the child node to keep is <PAN>

<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>

Thanks

flag
or highlight it and use the code button on the editor (the one that looks like binary...) – beggs Jul 17 at 2:47
Why did you dislike my edit that displays the XML source code correctly? – Martin v. Löwis Jul 17 at 3:04
It was a mistake. I had a couple browsers open and one showed the XML in proper format the other didn't. I'm new to the site so I figure I did something wrong again. – unknown (google) Jul 17 at 3:39
But when i add comments it still doesn't format the xml correctly... any ideas? – unknown (google) Jul 17 at 3:40
Use backticks for inline code: ` – Boldewyn Jul 17 at 10:31

3 Answers

vote up -1 vote down

Thanks for the quick replies... I'm been playing around with both solutions. What would you do if i had the following data and i wanted to now add the parent node LoginID back

<InqRs> 
   <PAN>4506445</PAN> 
   <RqUID>93</RqUID> 
   <Dt>90703195116</Dt> 
   <CaptureDate>704</CaptureDate> 
</InqRs>

<-- Wanted results -->

<InqRs> 
    **<LoginID>** 
        <PAN> 4506445 </PAN> 
    **</LoginID>** 
    <RqUID>93</RqUID> 
    <Dt>90703195116</Dt> 
    <CaptureDate>704</CaptureDate> 
 </InqRs>

Thanks

link|flag
I just edited my answer to match your expectations, so hope that helps you – chermosillo Jul 17 at 4:33
Additional question. Please place this kind of content into an edit of the original question, or ask a completely separate new question. Reason: The rating mechanism reorders answers. – mkoeller Jul 17 at 12:06
vote up 1 vote down

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

link|flag
Thanks for the help. – unknown (google) Jul 17 at 16:57
vote up 0 vote down
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="LoginID">
    <xsl:apply-templates select="PAN"/>
  </xsl:template>
  <xsl:template match="*">
   <xsl:copy><xsl:apply-templates/></xsl:copy>
  </xsl:template>
</xsl:stylesheet>
link|flag
does xsl:copy also copy attributes? I don't have the spec at hand right now... – Boldewyn Jul 17 at 10:33
No, it doesn't. However, this should be no problem, since in the OP's document, there aren't any attributes. – Martin v. Löwis Jul 17 at 11:05
Attributes are also copied if you change the template to (sorry, no formatting in comments ...): <xsl:template match="node() | @*"> <xsl:copy><xsl:apply-templates select="node() | @*"/> </xsl:copy> </xsl:template> – mkoeller Jul 17 at 12:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.