Copy all the other source tree nodes : copy of « XSLT stylesheet « XML






Copy all the other source tree nodes


File: Data.xml

<wine price="10.99" year="1997">product 2</wine>

File: Transform.xslt

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

Output:

<?xml version="1.0" encoding="UTF-8"?><wine price="10.99" year="1997">product 2</wine>

 








Related examples in the same category

1.copy-of select="."
2.Copy value
3.Copy all the attributes and other nodes