Re: [xsl] Bit test in XSLT

Subject: Re: [xsl] Bit test in XSLT
From: George Cristian Bina <george@xxxxxxx>
Date: Wed, 02 Jun 2004 08:22:56 +0300
Hi,

>  <xsl:if test="bit 7 of Flags is 1">

will be

<xsl:if test="(@Flags div 128) mod 2 = 1">

Best Regards,
 George
-----------------------------------------------
George Cristian Bina
<oXygen/> XML Editor & XSLT Editor/Debugger
http://www.oxygenxml.com


Current Thread