Re: [xsl] Transformation of

Subject: Re: [xsl] Transformation of
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 11 Feb 2005 11:32:11 GMT
This would probably be easier in xslt2 which has more extensive string
handling but in XSLT1, as always, start out with an identity transform

<xsl:template match="*">
<xsl:copy>
  <xsl:copy-of select="@*"/>
  <xsl:apply-templates/>
</xsl:copy>
</xsl:template>

then add templates for your replacements eg

<xsl:template match="text()[.='%special value%']">NEW VALUE</xsl:text>
<xsl:template match="text()[.='%another special value%']">2nd NEW VALUE</xsl:text>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread