xsl-list
[Top] [All Lists]

Re: Splitting an +attribute+ string

2005-01-13 04:02:35
Oh God. So sorry. I spent hours looking at that and getting nowhere. Time to step out of the wood for a bit.

Thanks.

B

Pawson, David wrote:

   <xsl:template name="commaDelineate">
    <xsl:param name="str"/>
       <xsl:when test="contains($str,',')">
         <xsl:value-of select="substring-before($str,',')"/>','
         <xsl:call-template name="commaDelineate">
<xsl:with-param name="str" select="substring-after($str,',')"/>
         </xsl:call-template>
       </xsl:when>
   </xsl:template>
Frustration : The errors seem to be generated around the "when" statement.

When is part of the xsl:choose statement.

http://www.w3.org/TR/xslt#section-Conditional-Processing-with-xsl:choose

choose
 when
 when
 otherwise
/choose


HTH DaveP



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>