Re: [xsl] string matching problem

Subject: Re: [xsl] string matching problem
From: "Myriam Delperier" <myriam.delperier@xxxxxxxxx>
Date: Tue, 20 May 2003 15:09:28 +0200
asim wrote:
|| AOA All
||  here is a sample condition
|| <xsl:if test="TValue = 'True'">
||  then html
|| </xsl:if>
|| 

hi you can try try something like 
<xsl:variable name="before" select="TRUE"/>
<xsl:variable name="after" select="'true'"/>

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


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


Current Thread