[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: XML to XML Transformation

Subject: RE: XML to XML Transformation
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Thu, 13 Dec 2001 21:53:24 -0000
cross browser xml transformation
> I'm looking to write a style sheet that will perform an XML to XML
> transformation.  My requirements are not too complex and I don't think
> this should be very difficult.  I simply want to take an XML document
> where an element has an attribute that acts as a yes/no flag.  I would
> like to filter only the "yes" flags and render a new XML page
> with only
> the elements that contain the "yes" flag in the attribute value.

You don't say whether the elements with "yes/no" flags can be nested, which
makes quite a difference to the solution. Assuming they can't, and that
you're only interested in the E elements, and that these all have the flag
present, I would write it as:

<xsl:template match="E[@flag='yes']">
<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="E[@flag='no']"/>

Mike Kay


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.