xsl-list
[Top] [All Lists]

Re: [xsl] monthNumber from monthName

2012-01-23 13:27:10
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(_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>