comparing two strings for equality ignoring case in xslt 1.0
- by flash
I have to compare adminStatus value whether it is 'Down' the input may be in any case,how to igonre the case using only xslt 1.0
<xsl:if test="$adminStatus='Down'">
do something
</xsl:if>