xsl-list
[Top] [All Lists]

RE: replacing values in file1 from file2

2004-03-29 01:38:36
Hi Jarno

It works perfectly (and it's so simple!). Thanks a lot.

Ronan


From: <Jarno(_dot_)Elovirta(_at_)nokia(_dot_)com>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject: RE: [xsl] replacing values in file1 from file2
Date: Mon, 29 Mar 2004 11:19:36 +0300

Hi,

>   <xsl:variable name="position"
> select="count(preceding-sibling::self)"/>

There is no element "self" in file1.

>   <xsl:for-each select=".">

You're already processing the current node, thus this is not needed. Try something like this

  <xsl:template match="tuv[lang('da-dk')]/seg[not(ph)]/text()">
<xsl:variable name="position" select="count(../../../preceding-sibling::tu[tuv[lang('da-dk')]/seg[not(ph)]])"/>
    <xsl:text>"</xsl:text>
<xsl:value-of select="document('file2.xml', /)/values/value[count(preceding-sibling::value) = $position]"/>
    <xsl:text>"</xsl:text>
  </xsl:template>
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

Cheers,

Jarno - Suicide Commando: Deliver Us From Evil

_________________________________________________________________
Få alle de nye og sjove ikoner med MSN Messenger http://messenger.msn.dk



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