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

RE: the last substring

Subject: RE: the last substring
From: Jeff Beadle <Jbeadle@xxxxxxxx>
Date: Fri, 16 Nov 2001 16:53:57 -0500
xsl substring last
I guess the template "split" would be better named "splice"?!  ... since it
doesn't actually return a node-set of the tokens.

-----Original Message-----
From: Jeff Beadle 
Sent: Friday, November 16, 2001 4:51 PM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE:  the last substring


this should work:

<xsl:template name="split">
  <xsl:param name="src"/><!--string-->
  <xsl:param name="delimiter"/><!--string-->
  <xsl:if test="$src">
    <xsl:variable name="s" select="substring-after($src,$delimiter)"/>
    <xsl:choose>
       <xsl:when test="$s">
 	    <xsl:call-template name="split">
		<xsl:with-param name="src" select="$s"/>
		<xsl:with-param name="delimiter" select="$delimiter"/>
	    </xsl:call-template>
	 </xsl:when>
       <xsl:otherwise>
		<xsl:value-of select="$src"/>
	 </xsl:otherwise>
    </xsl:choose>
  </xsl:if>
</xsl:template>


here's the usage:
<xsl:template match="/">
   <xsl:call-template name="split">
      <xsl:with-param name="src" select="'xxxxx.xxxxx.xxxx.1234'"/>
      <xsl:with-param name="delimiter" select="'.'"/>
   </xsl:call-template>
</xsl:template>
	

I just threw it together, so you may want to test it out a bit ... I think
it should work though.

-Jeff

-----Original Message-----
From: yan bai [mailto:bytj@xxxxxxxxx]
Sent: Friday, November 16, 2001 4:29 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:  the last substring


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.

Thanks.

Yan


__________________________________________________
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

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


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.