This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: How to extract comments only?


Try :

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

or use a <xsl:comment ...> instruction for a more literal duplication of the
source document content in place of my <SRC_COMMENT> tag.

Nick Browne
Slipstone Ltd

X Line wrote:

> I'm still new to XSLT, but have a need to
> extract all comments (however deep) from an
> XML file to another. Output should only
> contain comments and nothing else perhaps
> save the XML declaration (i.e: none
> of the other markup/pcdata). Is this possible
> with XSLT? I couldn't figure out from my
> limited knowledge. Thanks much for any info.
>
> A.
>
> ________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

-



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]