xsl-list
[Top] [All Lists]

RE: Moving an attribute from a node to a child node

2003-07-02 23:19:25
Hi,

I am trying to move an attribute from one node to child node. 

With XSLT you can't move anything, just create a modified copy.


 This seems like an easy
task, but I've been having issues.

Here is a sample XML document:

<myXML>
<NodeA reason="because">
<NodeB> ..... </NodeB>
</NodeA>
</myXML>

I need to move the attribute 'reason' to NodeB.  

E.g.

  <xsl:template match="NodeB">
    <xsl:copy>
      <xsl:copy-of select="../@reason"/>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="NodeA/@reason"/>
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

Cheers,

Jarno - Linnunradan käsikirja liftareille: Osa 16

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>