xsl-list
[Top] [All Lists]

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

2012-02-29 09:30:49
On 29/02/2012 15:21, David Carlisle wrote:
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)"/>
                                                      ^^^^

perhaps string might not be the best choice there if you want integers....


<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. ________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--