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?


Hello,
Thanks for your contributions, Michael Kay and Mike Brown.  Both of your
solutions worked quite well.

John

-----Original Message-----
From: Kay Michael [mailto:Michael.Kay@icl.com]
Sent: Tuesday, June 27, 2000 1:17 AM
To: 'xsl-list@mulberrytech.com'
Subject: RE: How to extract comments only?


> 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 

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

Mike Kay


 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]