Subject: Repace regex with a variable
From: Agnisys <agnisys@xxxxxxxxx>
Date: Thu, 2 Feb 2006 12:21:21 -0800 (PST)
|
Hi,
Is there a way to substitute a regular expression with a variable text (XSLT 2.0)?
The template looks like this:
<xsl:template match="text()">
<xsl:variable name="node_name" select="parent::node()/@name"/>
<xsl:value-of select="replace(., '\$name', $node_name)"/>
</xsl:template>
Problem is that I can't use $node_name in the replace function.
So how do I do this? I would appreciate any pointers.
Thanks,
Anupam.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|