Re: [xsl] string matching problem

Subject: Re: [xsl] string matching problem
From: "Myriam Delperier" <myriam.delperier@xxxxxxxxx>
Date: Tue, 20 May 2003 15:35:27 +0200
David Carlisle wrote:
|| <xsl:if test="translate(TValueTValue,'TRUE','true') = 'true'">
|| 
|| is true for TrUE and false for FaLsE
|| 
||

so it should be : 
<xsl:variable name="before" select="TRUEFALS"/>
<xsl:variable name="after" select="'truefals'"/>

<xsl:if test="translate(TValue,$before,$after)='true'">


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


Current Thread