This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: ext func


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@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of shruti
> Sent: 18 June 2001 11:26
> To: xsl-list@lists.mulberrytech.com
> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]