Subject: Re: substring function not handling hyphens in variables correctly
From: Tony Graham <Tony.Graham@xxxxxxxxxxxxxxx>
Date: Thu, 13 Sep 2001 17:43:48 +0100
|
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@xxxxxxxxxxxxxxx
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
|