[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Tokenize comma separated string in XSL

Subject: RE: Tokenize comma separated string in XSL
From: <Lalit.Chanchlani@xxxxxxxxxxxxxxxxxx>
Date: Wed, 21 Mar 2007 17:09:40 +0530
RE:  Tokenize comma separated string in XSL
Hi,

I am using XSLT 1.0 In the XSL I get the comma separated string
ABC,DEF,GHI as a parameter which is set by a Java program.

The output XML should be:

<AllCodes>
   <Code value = "A">
      <Description="ABC"/>
   </Code>
  <Code value = "D">
      <Description="DEF"/>
   </Code>
  <Code value = "G">
      <Description="GHI"/>
   </Code>
</AllCodes>

Can you please give me an example on the recursive template using
substring-before and substring-after?

Thanks,
Lalit



-----Original Message-----
From: Abel Braaksma [mailto:abel.online@xxxxxxxxx]
Sent: Wednesday, March 21, 2007 4:50 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Tokenize comma separated string in XSL

Lalit.Chanchlani@xxxxxxxxxxxxxxxxxx wrote:
> Hi All,
> I have a comma-separated string like ABC,DEF,GHI which I want to
> tokenize and return to a template which retrieves separately its
> corresponding code from a XML input.
>
What version of XSLT are you using?

In XSLT 2, this is:

<xsl:for-each select="tokenize($your_input, ',')" >
    <Description value="{.}" />
</xsl:for-each>

In XSLT 1, use a recursive template call with substring-before and
substring-after to "walk" through the string.

> The output should be:
>
> <AllCodes>
>    <Code value = "A">
>       <Description="ABC">
>
your output is not valid XML and as such is not (easily) possible with
XSLT. I assume you meant something else?

Cheers,
-- Abel Braaksma
   http://www.nuntia.nl



DISCLAIMER:
This message contains privileged and confidential information and is intended
only for an individual named. If you are not the intended recipient, you
should not disseminate, distribute, store, print, copy or deliver this
message. Please notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed, arrive late or incomplete or
contain viruses. The sender, therefore,  does not accept liability for any
errors or omissions in the contents of this message which arise as a result of
e-mail transmission. If verification is required, please request a hard-copy
version.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.