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

Re: XSL:Copy w/ Processing Optimization Suggestions

Subject: Re: XSL:Copy w/ Processing Optimization Suggestions
From: martin@xxxxxxxx
Date: Thu, 13 Mar 2003 02:03:59 +0000 (GMT)
Re:  XSL:Copy w/ Processing Optimization Suggestions
sorry, it's late and i wasn't paying enough attention - pls ignore my
previous reply. looking at your input data, you could make things a lot
easier for yourself:

<xsl:template match="node()">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

<xsl:template match="Results">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="Part">
<xsl:sort order="ascending" select="@DisplayValue" />
</xsl:apply-templates>
</xsl:copy>
</xsl:template>

<xsl:template match="Part[not(contains(@DisplayValue, 'BM5125'))]"/>

hmm, i think that makes more sense. sorry for the confusion.

the key is that the most specific template will be used, so for Part
elements that don't have a DisplayValue attribute that contains the
specific string the empty, no-copy template will be invoked.

regards,

/m

Martin Klang
http://www.o-xml.org - the object-oriented XML programming language


 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.