|
Subject: Re: [xsl] xsl:variable and node list From: David Carlisle <davidc@xxxxxxxxx> Date: Fri, 15 Oct 2004 09:57:37 +0100 |
don't do that:
<xsl:variable name="withname">
<xsl:copy-of
select="tblMIMCompanies[contains(translate(@name,$upperCase,$lowerCase),tran
slate($name,$upperCase,$lowerCase))'true']"/>
</xsl:variable>
which makes a result tree fragment not a node list (and is expensive as
it really has to copy all the nodes)
do
<xsl:variable name="withname"
select="tblMIMCompanies[contains(translate(@name,$upperCase,$lowerCase),tran
slate($name,$upperCase,$lowerCase))'true']"/>
which makes a node set is less to type and a lot less expensive to
execute.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] xsl:variable and node list, Luke Ambrogio | Thread | RE: [xsl] xsl:variable and node lis, Jarno.Elovirta |
| RE: [xsl] Problem using Position() , Michael Kay | Date | [xsl] Choosing the a specific follo, Huditsch Roman |
| Month |