|
Subject: Re: [xsl] Creating elements in an arbitrary position in the result document From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx> Date: Sun, 17 Jan 2010 22:05:06 -0500 |
Thank you very much for your answer Ken. Your code will not solve my problem, because in the template that matches A I don't know the attribute names and values for attrC, attrD, value1, and value2.
I will find that information in the subtree of B, and B can be anywhere in the source document.
I tried this but it didn't work:
<xsl:template match="B"> <xsl:element name="/A/new_element">
t:\ftemp>type cristobal.xml
<A>
... <- unknown/variable amount of nodes
<B>
<C attrC="value1"/>
<D attrD="value2"/>
</B>
</A><xsl:template match="A">
<xsl:copy>
<xsl:copy-of select="@*"/>
<new_element>
<xsl:copy-of select="//B/C/@*"/>
<xsl:copy-of select="//B/D/@*"/>
</new_element>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template><xsl:template match="@*|node()"><!--identity for all other nodes-->
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
-- UBL and Code List training: Copenhagen, Denmark 2010-02-08/10 XSLT/XQuery/XPath training after http://XMLPrague.cz 2010-03-15/19 XSLT/XQuery/XPath training: San Carlos, California 2010-04-26/30 Vote for your XML training: http://www.CraneSoftwrights.com/s/i/ Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Training tools: Comprehensive interactive XSLT/XPath 1.0/2.0 video Video lesson: http://www.youtube.com/watch?v=PrNjJCh7Ppg&fmt=18 Video overview: http://www.youtube.com/watch?v=VTiodiij6gE&fmt=18 G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Male Cancer Awareness Nov'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Creating elements in an a, cvergara | Thread | Re: [xsl] Creating elements in an a, Imsieke, Gerrit, le- |
| Re: [xsl] Creating elements in an a, cvergara | Date | Re: [xsl] Creating elements in an a, Imsieke, Gerrit, le- |
| Month |