[Home] [By Thread] [By Date] [Recent Entries]
On 7/17/06, David B <daavidb@xxxxxxxxx> wrote:
Hello, How about something like: <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> <xsl:template match="*[not(*)]"> <xsl:copy-of select="."/> <xsl:copy-of select="$file2//*[not(*)][count(preceding::*) = count(current()/preceding::*)]"/> </xsl:template> You would apply this transform to file1.xml and reference file2.xml using the document() function. You could speed it up by using a key for the lookup into $file2 as the heavy using of the preceding axis would likely make this very slow. cheers andrew
|

Cart



