xsl-list
[Top] [All Lists]

RE: [xsl] how to split word into sequence of letters

2012-08-17 10:12:55
Yeah... that's called borrowing solutions from another spec ;-)

-----Original Message-----
From: Andrew Welch [mailto:andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com] 
Sent: Friday, August 17, 2012 5:02 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] how to split word into sequence of letters

Your solution does reassemble the string and a count on that expression would 
result in 1.

So I guess you meant sth like:

ah yeah that's what i meant but what is this odd syntax:

declare function local:split($string as xs:string) as xs:string* {
    for $codepoint in string-to-codepoints($string) return 
codepoints-to-string($codepoint)
};

;)




-- 
Andrew Welch
http://andrewjwelch.com

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


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