Re: [xsl] monthNumber from monthName

Subject: Re: [xsl] monthNumber from monthName
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Mon, 23 Jan 2012 14:26:54 -0500
Hi,

On 1/21/2012 2:13 PM, was written:

<xsl:function as="xs:string" name="d:getMonthName"> <xsl:param name="monthName"/> <xsl:variable name="monthNames" select="('january','february','march','april','may','june','july','august','september','october','november','december')"/> <xsl:sequence select="format-number(if (index-of($monthNames,$monthName) castable as xs:integer) then index-of($monthNames,$monthName) else 0,'00')" /> </xsl:function>

A bit of refactoring:


select="format-number((index-of($monthNames,$monthName),0)[1],'00')"

It works since index-of() returns an empty sequence if the item argument is not included in the sequence argument.

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

Current Thread