xsl-list
[Top] [All Lists]

key using a number of siblings

2002-11-13 15:13:19
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



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