function contains
Hello all,
I was wondering if there is any function,similar to contains,that returns true if the second parameter matches "exactly" with the first parameter.
Example:
<xsl:when test="contains('RCA', 'R')"> ->I want this to retunr false(but contains returns true).
<xsl:when test="contains('RCA', 'RCA')"> ->I want this to retunr true.
Thanks for teh help.
Tomi.
|