comparing two strings for equality ignoring case in xslt 1.0
Posted
by flash
on Stack Overflow
See other posts from Stack Overflow
or by flash
Published on 2010-04-16T07:58:58Z
Indexed on
2010/04/16
8:03 UTC
Read the original article
Hit count: 143
xslt
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>
© Stack Overflow or respective owner