Re: [xsl] Getting text from string

Subject: Re: [xsl] Getting text from string
From: Stefan Krause <stf@xxxxxxxx>
Date: Tue, 1 Nov 2011 20:53:43 +0100
Take a look at xsb:fileName-and-fileExtention-from-url() from the XSLT-
SB library [1]. Basically it takes the tokenize()/last() approach, but
also performs some extra format checks.


Stefan


[1]
http://code.google.com/p/xslt-sb/source/browse/tags/xslt-sb/0.2/0.2.28/files.
xsl

Am 01.11.2011 um 18:18 schrieb Stan Mikita:

> Hi,
>
> I have a directory path value and i want to grab the text "filename"
> to the right of the last "/". I've tried using the below without any
> luck. Is there a reverse search where you can tell it to search from
> the right up to the first occurence of a "/"? Value can be many
> directories deep.
>
> path = "dir1/dir2/dir3/dir4/filename"
>
> xsl:variable name="dirPath" select="substring-before(@path,'/')"/
>
> xsl:variable name="dirPath" select="substring-after(@path,'/')"/

Current Thread