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: substring function not handling hyphens in variables correctly


Chas Mick wrote at 13 Sep 2001 11:36:46 -0400:
 > I have just upgraded from Xalan 1.0.0 to Xalan
 > 1.3.  The following snippets no longer function
 > correctly:
 > 
 > <xsl:value-of
 > select="concat(substring($user,1,3),substring($user,5,6),substring($user,8,11))"/>

Since you're really only worried about '-' characters, You could just
use:

<xsl:value-of select="translate($user, '-', '')"/>

Regards,


Tony Graham
------------------------------------------------------------------------
XML Technology Center - Dublin        mailto:tony.graham@ireland.sun.com
Sun Microsystems Ireland Ltd                       Phone: +353 1 8199708
Hamilton House, East Point Business Park, Dublin 3            x(70)19708

 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]