>
> I am dong the following
>
> <xsl:for-each select="contains($objName,'"')">
>
The contains() function returns a boolean, so there's not much point
trying to iterate over it. You can only use xsl:for-each iteration to
iterate over a node-set. In other cases you need to use a recursive
template. You will find an example by searching for "replace" in the FAQ
for this list.
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|