This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: function substring



> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]