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

RE: Function within an expression

Subject: RE: Function within an expression
From: "Jim Neff" <jneff@xxxxxxxxxxxxxxx>
Date: Wed, 5 Jan 2005 13:49:49 -0500
re function
Yes, I see now, so I should do:

 substring(current(), 1, 3)

 in order to make these two methods result the same?

--Jim


-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx] 
Sent: Wednesday, January 05, 2005 1:50 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE:  Function within an expression

> 
> It should be possible to do like your example (I think :) but it's 
> definitively possible to create a "local" variable related to current
> node:
> 
> <xsl:for-each select="$lines">
>    <xsl:variable name="type" select="substring(., 1, 3)"/>
>    <record>
>       <xsl:apply-templates select="$field_definitions/*[@type
> = $type]"/>
>      ...
>    </record/>
> </xsl:for-each>
> 

Yes, you can do this, and you can also do

<xsl:for-each select="$lines">
>    <record>
>       <xsl:apply-templates select="$field_definitions/*[@type =
substring(., 1, 3)]"/>
>      ...
>    </record/>
> </xsl:for-each>

but they aren't the same thing, because the meaning of "." within a
predicate is different from its meaning outside the predicate.

Michael Kay
http://www.saxonica.com/

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.