Subject: merging documents/union
From: "David Leuschner" <leuschner-list@xxxxxxx>
Date: Sat, 15 Dec 2001 14:17:42 +0100
|
Hi!
I need to write a special kind of "union" template that merges two nodesets.
The structure of these nodesets is not known.
For example those two <node> elements should be merged to one <node> where
the
second overwrites the first:
<node>
<element-a>first value for element a</element-a>
<element-b>first value for element b</element-b>
</node>
<node>
<element-b>second value for element b</element-b>
<element-c>completly new element c</element-c>
</node>
should be merged to:
<node>
<element-a>first value for element a</element-a>
<element-b>second value for element b</element-b>
<element-c>completly new element c</element-c>
</node>
Is this possible? Can I extend this "union" to support attributes and nested
elements?
Thank you for any help.
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|