RE: [xsl] change only the value of a node

Subject: RE: [xsl] change only the value of a node
From: Jorg Heymans <Jorg.Heymans@xxxxxxxxxx>
Date: Wed, 4 Jun 2003 08:59:52 +0100
*exactly* what I wanted , thanks !
(and have a bit more insight already on how to tackle xslt probs)


-----Original Message-----
From: Jarno.Elovirta@xxxxxxxxx [mailto:Jarno.Elovirta@xxxxxxxxx] 
Sent: Mittwoch, 4. Juni 2003 09:19
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] change only the value of a node

Hi,

> My stylesheet needs to output the whole document unchanged, 
> only the value
> of the text node needs to be changed to the value of the "dynamictext"
> parameter (see below) in the stylesheet ie

You didn't specify how the text node to be changed should be identified, but
hope this will help you in writing the stylesheet you need.

<xsl:param name="dynamictext"/>

<xsl:template match="text[@id = 123]/text()">
  <xsl:value-of select="$dynamictext" />
</xsl:template>

<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

Cheers,

Jarno - God Module: Reverse Inversion

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

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


Current Thread