Какой лучший (более быстрый) способ сделать замену в xslt?
1 / с шаблоном
<xsl:template name="str-replace">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="str-replace">
<xsl:with-param name="text" select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
2 / с расширением объекта
public class ToolBox
{
public string replace(string s, string el, string by)
{return s.Replace(el, by);}
}
<xsl:value-of select="toolbox:replace($foo,$bar, $fobar)" />