[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: matching question
> From: Bruening, Oliver [mailto:oliver.bruening@xxxxxxxxxxx] > i wrote an xsl-defintion for a given xml-document. i want to > match only selected xml-elements, but all xml-elements are in the > output. is there a way to filter out unwanted xml-elements ? > i'm using lotus xsl. Create an empty template that matches the elements you want to weed out. Example: This should suppress output for <redheaded> and <stepchild>: <xsl:template match="redheaded|stepchild"> </xsl:template> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|