Previous | Next | Indexes
Zvon > Tutorials > XSLT 2.0 Tutorial > Comments and processing instructions (5/9) >

Matching comments in the source document

Comment nodes are matched by "comment()" node test. Be aware that XMP processors are not required to pass comment nodes to the application. If your XSLT processor uses an XML parser which does not pass comments you will get no match even if the source document contains comments.

XSLT

      <xsl:stylesheet
                  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                  version="2.0">
            <xsl:output  method="xml"
                        indent="yes"
                        omit-xml-declaration="yes"/>

            <xsl:template  match="/aaa">
                  <xsl:apply-templates  select="bbb/comment()"/>
            </xsl:template>

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

      </xsl:stylesheet>
XML

      <aaa>
            <bbb> <!-- Comment B1 --> </bbb>
            <bbb> <!-- Comment B2 --> </bbb>
      </aaa>
Output

      <comment> Comment B1 </comment>
      <comment> Comment B2 </comment>


Previous chapter: Date and Time
Next chapter: Built in Types
Previous page: Generating comments using select attribute
Next page: Selecting comments with node