[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] how to cast a sequence (e.g. strings to integers)


Subject: Re: [xsl] how to cast a sequence (e.g. strings to integers)
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 29 Feb 2012 15:21:28 +0000

On 29/02/2012 15:05, Robby Pelssers wrote:
Hi all,

I have the use case where I need to cast a sequence of strings to a sequence of numbers

Considering I get this input : ('0', '1, '2') I would like to return following sequence (0,1,2)

<xsl:function name="nxp:toIntegers" as="xs:integer*">
     <xsl:param name="numbers" as="xs:string*"/>
     TODO: return sequence of integers
<xsl:sequence select="for $i in $numbers return xs:string($i)"/>


<xsl:function>

David
--
google plus: https:/profiles.google.com/d.p.carlisle

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________



Current Thread