How to re-asign a value to a variable in XSLT
From: RC (raymond.chui_at_noaa.gov)
Date: 03/29/05
- Next message: Manuel J. Goyenechea: "Re: Calling C/C++ code from Java?"
- Previous message: Ulf_N: "Re: to extend or not"
- Next in thread: kaeli: "Re: How to re-asign a value to a variable in XSLT"
- Reply: kaeli: "Re: How to re-asign a value to a variable in XSLT"
- Reply: Anton Spaans: "Re: How to re-asign a value to a variable in XSLT"
- Reply: Bryce: "Re: How to re-asign a value to a variable in XSLT"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 29 Mar 2005 08:10:10 -0500
Sorry Dudes,
I couldn't find an appropriate group to post about XML/XSLT issues.
I can only post to these close groups.
In most of programming languages are VERY easy to do:
int i = 0;
i = 3;
i = i + 1;
i += 2;
i++;
But how can I do these in XSLT?
I got error when I do
<xsl:variable name="i" select='0' />
<xsl:variable name="i" select="$i + '1' />
Can dudes (American West Coast's Term) out there can help?
Thank Q!
- Next message: Manuel J. Goyenechea: "Re: Calling C/C++ code from Java?"
- Previous message: Ulf_N: "Re: to extend or not"
- Next in thread: kaeli: "Re: How to re-asign a value to a variable in XSLT"
- Reply: kaeli: "Re: How to re-asign a value to a variable in XSLT"
- Reply: Anton Spaans: "Re: How to re-asign a value to a variable in XSLT"
- Reply: Bryce: "Re: How to re-asign a value to a variable in XSLT"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|