xsl-list
[Top] [All Lists]

RE: change only the value of a node

2003-06-04 00:59:52
*exactly* what I wanted , thanks !
(and have a bit more insight already on how to tackle xslt probs)


-----Original Message-----
From: Jarno(_dot_)Elovirta(_at_)nokia(_dot_)com 
[mailto:Jarno(_dot_)Elovirta(_at_)nokia(_dot_)com] 
Sent: Mittwoch, 4. Juni 2003 09:19
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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[(_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

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



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