xsl-list
[Top] [All Lists]

[xsl] last two characters

2010-11-14 16:41:05
Hi,
  I have an xml which contains 

<Number>12345678912345678501234</Number>
        I want to remove last two characters of this string and store it in 
variable and also i need last two characters which i have stripped off.

<xsl:template match="/">
        <xsl:variable name="s" select="/Number" />
        <xsl:value-of
                select="substring($s, 1, string-length($s) - 2)" />
 </xsl:template>
         This template removes last two characters and gives me 
123456789123456785012.
           I need 34 in another variable.is there any function something like 
last(xxx) available . 



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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