xsl-list
[Top] [All Lists]

Re: string matching problem

2003-05-20 06:35:27
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



<Prev in Thread] Current Thread [Next in Thread>