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

RE: xsl:number

Subject: RE: xsl:number
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Fri, 2 Dec 2005 10:56:53 -0000
xsl integer
You don't need the second variable, you can write 

test="//someXPath/Condition[number($instance)]/..."

In XSLT 2.0 you can do

<xsl:variable name="instance" as="xs:integer">
     <xsl:number/>
</xsl:variable> 

With simple invocations of xsl:number like this, however, it's often easier
to do

<xsl:variable name="instance" select="count(preceding-sibling::foo)+1"/>

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



> -----Original Message-----
> From: Fraser Goffin [mailto:goffinf@xxxxxxxxxxx] 
> Sent: 02 December 2005 10:42
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  xsl:number
> 
> In a stylesheet I am storing the value returned by <xsl:number> in a 
> variable and then using that variable within an XPath 
> expression, thus :-
> 
> <xsl:template match="foo">
>     <xsl:variable name="instance">
>         <xsl:number/>
>     </xsl:variable>
>     <xsl:variable name="instanceNo" select="number($instance)"/>
> 
>     <xsl:choose>
>         <xsl:when 
> test="//someXPath/Condition[$instanceNo]/ItemType/Code) = 
> 'some value'"/>
>         ...
> 
> Is it possible to optimise the assignment to the variable 
> instanceNo to do 
> it in 1 step (rather than using 2 variables) as part of the select ?
> 
> I've tried various combinations but can't seem to find one 
> that works and 
> I'm wondering whether because <xsl:number/> is an instruction 
> it can't be 
> used in that way ??
> 
> Fraser.

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.