RE: [xsl] How to use arrays in xsl

Subject: RE: [xsl] How to use arrays in xsl
From: "Jitendra Kharche" <Jitendra.Kharche@xxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 9 May 2006 14:49:29 +0530
Thanks Mukul, Abel and Michael for your immediate response.
I am a new bie to xsl. As all of you have pointed to use XSL 2.0 that
has tokenize functionality built-in, I have decided to use it. But I
have following very basic questions:
1. how can I know which XSLT version I am using and what I will have to
do to use XSLT 2.0?
2. Do I need to download some package?
3. On top of that since the xsl is applied to the xml input in browser,
will my application run at all clients?

Regards,
Jitendra Kharche
Geometric Software Solutions Co. Ltd.
Work: +91-20-2290 6351

********************************************************************
This e-mail communication and any attachments are privileged and
confidential and intended only for the use of the recipients named
above. If you are not the intended recipient, please do not review,
disclose, disseminate, distribute or copy this e-mail and attachments.
If you have received this communication in error, please notify the
sender immediately by email or telephone at+91-20-22906351.
*********************************************************************

-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx]
Sent: Tuesday, May 09, 2006 2:14 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] How to use arrays in xsl

XSLT 2.0 has "sequence of string" as a data-type, which can be used to
represent an array. In XSLT 1.0, the best approach is to create a
temporary tree (result tree fragment) containing the items of the array
as XML elements, and then use the xx:node-set() extension to make this
tree available for access using XPath expressions. See the str:tokenize
template at www.exslt.org for an example.

Michael Kay
http://www.saxonica.com/

> -----Original Message-----
> From: Jitendra Kharche
> [mailto:Jitendra.Kharche@xxxxxxxxxxxxxxxxxxxxx]
> Sent: 09 May 2006 05:48
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] How to use arrays in xsl
>
>
> Hi all,
> I am facing a problem while writing an xsl.
> In my xml I have a comma separated values (csv) list. On each of the
> value in this list I want to do some processing. For that I want to
> parse the csv string and store it into an array and pass the array to
> a separate template from processing. Can we do this in xsl?
>
> Regards,
> Jitendra Kharche
> Geometric Software Solutions Co. Ltd.
> Work: +91-20-2290 6351
>
> ********************************************************************
> This e-mail communication and any attachments are privileged and
> confidential and intended only for the use of the recipients named
> above. If you are not the intended recipient, please do not review,
> disclose, disseminate, distribute or copy this e-mail and attachments.
> If you have received this communication in error, please notify the
> sender immediately by email or telephone at+91-20-22906351.
> *********************************************************************

Current Thread