[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] key using a number of siblings


Subject: [xsl] key using a number of siblings
From: FranklinChen@xxxxxxx
Date: Wed, 13 Nov 2002 17:13:19 -0500

I have data that looks like

...
<w>a</w>
<w><f type="completion">b</f></w>
<w><f type="completion">c</f></w>
...

I am doing processing for each "word", and am attempting to do this
using a key.  The key

  <xsl:key name="words" match="w[not(f/@type='completion')]" use="normalize-space(text())"/>

manages to match what I want, I believe, but instead of

text(), I really want to concatenate text() with all following
siblings that are completions, such that for the example above, I get
the string

"a+b+c"

Is there an elegant way to do this?

-- 
Franklin

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



Current Thread