Operators "=", "!=", "<", "<=", ">", and ">=" can be used to compare strings according to their order. These comparisons return boolean values "true" and "false".
|
XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/> <xsl:template match="/aaa"> <xxx> <xsl:value-of select="bbb > ddd"/> </xxx> <yyy> <xsl:value-of select="bbb <= ccc"/> </yyy> <zzz> <xsl:value-of select="ccc = eee"/> </zzz> </xsl:template> </xsl:stylesheet> |
|
|
XML
<aaa> <bbb>How</bbb> <ccc>do</ccc> <ddd>you</ddd> <eee>do</eee> </aaa> |
Output
<xxx>false</xxx> <yyy>true</yyy> <zzz>true</zzz> |
| Previous chapter: | Arithmetics |
| Next chapter: | Transforming strings with regular expressions |
| Previous page: | Comparisons of two strings with function compare |
| Next page: | Extracting substrings with substring function |