match comment : comment « XSLT stylesheet « XML






match comment


File: Data.xml

<verse>test</verse>

File: Transform.xslt

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:output omit-xml-declaration="yes" />

  <xsl:template match="comment()">
    <doc>
      <xsl:value-of select="." />
    </doc>
  </xsl:template>

  <xsl:template match="verse">
    <p>
      <xsl:apply-templates />
    </p>
  </xsl:template>

</xsl:stylesheet>


Output:

<p>test</p>

 








Related examples in the same category

1.Add comments to generated xml
2.Hyphens in xsl:comment element make it illegal
3.Create comment in style sheet
4.Copy comment with comment() function