XSLT <xsl:copy-of> Element

Definition and Usage

<xsl:copy-of> ইলেকট্রনট বর্তমান নোডের একটি কপি তৈরি করতে পারে。

মন্তব্য:বর্তমান নোডের Namespace নোড, সাবনোড এবং অতিযোগ হলো স্বচালিতভাবে কপি করা হবে!

টীকা:এই ইলেকট্রনট ব্যবহার করে একই নোডের একাধিক কপি আউটপুটের ভিন্ন স্থানে সম্মিলিত করা যায়。

Syntax

<xsl:copy-of select="expression"/>

Attribute

Attribute Value Description
select expression অপরিহার্য। কপি করতে হলের নির্দেশ দিন

প্রয়োগ

উদাহরণ ১

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="header">
  <tr>
  <th>Element</th>
  <th>Description</th>
  </tr>
</xsl:variable>
<xsl:template match="/">
  <html>
  <body>
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="reference/record">
    <tr>
    <xsl:if test="category='XML'">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  <br />
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="table/record">
    <tr>
    <xsl:if test="category='XSL'">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>