Re: [xsl] values in sequence after tokenize

Subject: Re: [xsl] values in sequence after tokenize
From: "andrew welch" <andrew.j.welch@xxxxxxxxx>
Date: Tue, 11 Jul 2006 15:33:08 +0100
On 7/11/06, Michael Kay <mike@xxxxxxxxxxxx> wrote:
The regex given to tokenize determines the separator between tokens, not the
content of the tokens.
I'm not quite sure what result you expect here (or in general). You can
probably tackle it using xsl:analyze-string, which is more powerful than
tokenize().

Using xsl:analyze-string, how would I add a count to the matching items:


<xsl:analyze-string select="$string" regex=".{{1,6}}\^">
 <xsl:matching-substring>
   <line count="{ ?? }"><xsl:value-of select="."/></line>
 </xsl:matching-substring>
 <xsl:non-matching-substring>
   <non><xsl:value-of select="."/></non>
 </xsl:non-matching-substring>
</xsl:analyze-string>

...so that the output would be:

<line count="1">....
<line count="2">....

Is this possible or does it require two passes?

thanks
andrew

Current Thread