xsl-list
[Top] [All Lists]

Re: Convert paramter to a sequence

2006-02-16 14:16:29
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(_at_)mulberrytech(_dot_)com
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
======================================================================


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