Subject: Re: Recursion logic / coding
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 16 Jul 2001 17:33:31 +0100
|
Which XSL system are you using?
> <xsl:when test="$1!=''">
That's a syntax error (I think) as $ has to be followed by a variable name, and
XML names can not start with a digit.
Your problem seems to be somewhere arond here:
> <xsl:value-of
>select="substring($text,1,$length)" />
You don't want to just put out the string there having found the first
replacement , you need to recurse to do the other replacement
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|