Re: [xsl] How to process a list ?

Subject: Re: [xsl] How to process a list ?
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Thu, 7 Mar 2002 23:27:03 +0100
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


Current Thread