xsl-list
[Top] [All Lists]

RE: change only the value of a node

2003-06-04 00:19:23
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[(_at_)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



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