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]
Other format: [Raw text]

Re: How to process a list ?


Does oraxsl support tokenize ?

>>> joerg.heinicke@gmx.de 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


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