Re: [xsl] How to process a list ?

Subject: Re: [xsl] How to process a list ?
From: "John Rozier" <ROZIERJ@xxxxxxxxxxxxxxxx>
Date: Fri, 08 Mar 2002 15:24:09 -0500
Does oraxsl support tokenize ?

>>> joerg.heinicke@xxxxxx 03/07/02 05:27PM >>>
Either via recursive template or a processor-depending extension function,
e.g. http://xml.apache.org/xalan-j/extensionslib.html#tokenize for Xalan.
Search the archives, you will find many examples.

Joerg

> Do you know how to process a list ? id=123,456,789
>
> This how I would process one ID
> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> <xsl:param name="muid"/>
> <xsl:template match="/">
> <xsl:output method="html"/>
> <PreMedlineCitationSet>
> <xsl:copy-of select="//MedlineCitation[MedlineID='$muid']" />
> </PreMedlineCitationSet>
> </xsl:template>
> </xsl:stylesheet>


 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