Subject: Re: Convert paramter to a sequence
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Thu, 16 Feb 2006 16:16:29 -0500
|
Andrew,
At 02:27 PM 2/16/2006, you wrote:
(following on from todays sudoku task) how do you go about converting
a parameter into a sequence of integers?
So:
<xsl:variable name="board" select="('1, 2, 3')" as="xs:integer+"/>
becomes:
<xsl:param name="board" .... as="xs:integer+"/>
But this fails as the passed in value is typed as a String. How do
you get from the String "1, 2, 3" to the typed sequence (1, 2, 3) ?
for $i in tokenize($board, ',') return xs:integer($i)
? (still learning here)
Cheers,
Wendell
======================================================================
Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc. http://www.mulberrytech.com
17 West Jefferson Street Direct Phone: 301/315-9635
Suite 207 Phone: 301/315-9631
Rockville, MD 20850 Fax: 301/315-8285
----------------------------------------------------------------------
Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================
|