RE: [xsl] Second try: Search and replace many strings that may not be present in target

Subject: RE: [xsl] Second try: Search and replace many strings that may not be present in target
From: "Andrew Welch" <awelch@xxxxxxxxxxxxxxx>
Date: Mon, 20 May 2002 16:47:54 +0100
ok, one last thing which you should have noticed:

<xsl:when test="count($quotes/quote) > $position">
    
will be one short so it really should be

<xsl:when test="count($quotes/quote) >= $position">

or

<xsl:when test="count($quotes/quote)+1 > $position">

depending on your personal preference


    
    

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.350 / Virus Database: 196 - Release Date: 17/04/2002
 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread