Re: function substring

Subject: Re: function substring
From: Larry_Mason@xxxxxx
Date: Mon, 27 Nov 2000 12:55:16 -0600
> I would like to know how I can use "substring-after" function or How can
I
> trim the value of the text.
> example: <xsl:value-of select="."/>  value is "18 564 5333"
> I need last 4 numbers to show in output instead of whole value (18 564
5333).

If the format is fixed, you could use
<xsl:value-of select="substring(.,8)"/>

otherwise this will get whatever is after the second space
<xsl:value-of select="substring-after(substring-after(.,' '),' ')"/>

Cheers!
Larry



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


Current Thread