[xsl] Re: the last substring

Subject: [xsl] Re: the last substring
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Fri, 16 Nov 2001 14:18:39 -0800 (PST)
> I have an element like:
> <elem>xxxxx.xxxxx.xxxx.1234</elem>
> 
> 
> I know substring-before() will read the value before
> the first '.'.
> 
> I wonder how I can read the value after the last '.',
> namely 1234.

last-substring ls str = first-substring reverse(ls) reverse(str)

An implementation of the reverse() function can be found at:

http://sources.redhat.com/ml/xsl-list/2001-11/msg00488.html

The first index of a substring is:

 string-length(substring-before(ls, str))

Cheers,
Dimitre Novatchev.


__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

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


Current Thread