xsl-list
[Top] [All Lists]

Re: xpath and variables

2003-06-10 09:44:13

<xsl:variable name="path" select="//level1/level2" />

path is not an expression type in xpath, you can not store unevaluated
expressions in a variable (no more than you can in most other
programming languages) so that variable stores the node set resulting
from evaluating that path at the current node.


<xsl:value-of select="$docdataXML/$path"/>
 
As the value of $path is a constant, this is the same as

<xsl:value-of select="$path"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

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



<Prev in Thread] Current Thread [Next in Thread>