xsl-list
[Top] [All Lists]

[xsl] XPath expression to convert a list of (string) integers into a sequence of (genuine) integers

2012-12-26 07:44:46
Hi Folks,

I want an XPath expression to convert the codepoints in this element

<Numbers>84 104 101 32 115 101 99 114 101 116 32 97 103 101 110 116 32 105 115 
32 46 46 46</Numbers>

into a string.

Here is one way to do it

    codepoints-to-string(for $i in tokenize(., '\s+') return xs:integer($i))

Is there a better XPath expression? 

By "better" I mean simpler.

/Roger

--~------------------------------------------------------------------
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>
--~--


<Prev in Thread] Current Thread [Next in Thread>