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>
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>
Use the translate()
function on both $adminStatus
and target value.