Re: [xsl] String Tokenizer in XSLT

Subject: Re: [xsl] String Tokenizer in XSLT
From: Kamal Bhatt <kbhatt@xxxxxxxxx>
Date: Thu, 07 Dec 2006 11:12:03 +1100
Mario Madunic wrote:
It seems you are only translating the comma into a | and not needing to tokenize
the string so the following should suffice.

<xsl:sequence select="translate(., ',', '|')" />

which will give you the out put 1|2|3
Yes, in that case it is probably better to use translate, but original question was about tokenizing. I should have chosen a better example, but I couldn't be bothered.



--
Kamal Bhatt

Current Thread