RE: [xsl] ext func

Subject: RE: [xsl] ext func
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Thu, 19 Jul 2001 03:25:32 +0100
Here's a stylesheet that uses saxon:tokenize

<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0"
xmlns:saxon="http://icl.com/saxon"; >

<!-- Test saxon:tokenize -->


<xsl:template match="doc">
<doc>
<xsl:for-each select="saxon:tokenize(.)">
  <p><xsl:value-of select="."/></p>;
</xsl:for-each>
</doc>
</xsl:template>

</xsl:stylesheet>

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of shruti
> Sent: 18 June 2001 11:26
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] ext func
>
>
> can somebody help me in using extension functions in xpath
> expressions.
> it would be really helpful if i can get some examples on how to use
> extension functions like tokenize, distinct  in xpath expressions...
>
>
> thanx..
> shruti
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


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


Current Thread