How to create a boolean value?
The value of the $var variable as defined in: <xsl:variable name=”var” select=”boolean(‘false’)”/> is true() This is because in XPath “false” is an ordinary string, as opposed to false(), which is the constructor for the boolean value false() The two boolean values in XPath are (note that they are constructed!): true() and false() The detail of … Read more