xsl-list
[Top] [All Lists]

Re: [xsl] Simple lookup in XSLT2

2006-11-14 03:54:35


This works just fine with XSLT 1.0,

Odd as it's a syntax error.  name="$months" should be  name="months"
then the code should work in xslt2 as you have it, although it should
not work at all in xslt1 as a variable in xslt1 creeates a result tree
fragment not a node set so you can not query into it with $months/m.

In xslt2 you could also (more efficiently) do

<xslt:variable name="months" as="item()*" select=
 
"('January','February','March','April','May','June','July','August','September','October','November','December')"/>

<xsl:value-of select="$months[number($month)]"/>

David

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