Hi all.
I was pointed to the XSLT Standard Library at http://xsltsl.sourceforge.net/
where templates are available directly via the XMLNS. For example:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://xsltsl.sourceforge.net/string"
version="1.0">
The synopsis for the String library's SUBST function is:
<xsl:template name="str:subst">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="with"/>
...
</xsl:template>
My question is: how should such a template be used? I tried (variations of)
the following, with Instant-Saxon 6.2.2:
<xsl:template match="matchXYZ">
<xsl:call-template name="str:subst">
<xsl:with-param name="text" select="text()"/>
<xsl:with-param name="replace" select="'stringA'"/>
<xsl:with-param name="with" select="'stringB'"/>
</xsl:call-template>
</xsl:template>
but was unsuccessful so far. Anyone tried this before?
Greetings,
basa@work
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- xslt library usage
- Bas Alberts - Fri, 4 May 2001 03:44:04 -0400 (EDT) <=
- jim - Fri, 4 May 2001 07:43:43 -0400 (EDT)
- <Possible follow-ups>
- Bas Alberts - Fri, 4 May 2001 07:56:31 -0400 (EDT)
- jim - Fri, 4 May 2001 08:03:19 -0400 (EDT)
- Diamond, Jason - Fri, 4 May 2001 13:22:58 -0400 (EDT)
|
|