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

Subject: RE: [xsl] change only the value of a node
From: Jarno.Elovirta@xxxxxxxxx
Date: Wed, 4 Jun 2003 10:19:23 +0300
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


Current Thread