[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Determine file extension of path stored in variable

Subject: Determine file extension of path stored in variable
From: John <john-xsl-list@xxxxxxxx>
Date: Mon, 27 Dec 2004 08:23:34 -0800
xsl variable path
What is the best way to determine the extension of a file when the webroot-relative path is stored in a variable, assuming the path may contain any number of "." characters (so I can't use substring-after)? For instance if $lcpath contains /images/dir.path/file.png how do I set $ext to be "png"? Below is the best I have been able to come up with - suggestions greatly appreciated.

<xsl:variable name="lcpath" select="/images/dir.path/file.png" />

<xsl:variable name="pos">
<xsl:choose>
<xsl:when test="substring( $lcpath, string-length( $lcpath ) - 5, 1 ) = '.'">4</xsl:when>
<xsl:when test="substring( $lcpath, string-length( $lcpath ) - 4, 1 ) = '.'">3</xsl:when>
<xsl:when test="substring( $lcpath, string-length( $lcpath ) - 3, 1 ) = '.'">2</xsl:when>
<xsl:when test="substring( $lcpath, string-length( $lcpath ) - 2, 1 ) = '.'">1</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="ext" select="substring( $lcpath, string-length( $lcpath ) - $pos )" />


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.