Does XSLT use wildcards? I'm trying to use an external XML feed, but unfortunately one of the values contains a space before and a space after the needed value.
So if the XML feed contains this data:
Code:
<xmlfeed>
<value> yada </value>
</xmlfeed>
...and I have an XSLT stylesheet to compare that value to an internal value, like this:
Code:
<xsl:if test="$rssfeed/xmlfeed/value = '*yada*'">
<strong>Current Status: </strong><xsl:value-of select="$rssfeed/xmlfeed/value" />
</xsl:if>
Is there a way to use a wildcard around the value in XSLT? Thanks for any help.
KWilliams