[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] DATE FORMAT


Subject: RE: [xsl] DATE FORMAT
From: Jarno.Elovirta@xxxxxxxxx
Date: Mon, 1 Sep 2003 12:59:22 +0300

Hi,

> i have this date in the XML file:
> <MVLC_ISS_DATE>2003-08-22T00:00:00.0000000+02:00</MVLC_ISS_DATE>
> How an i format it using XSLT to:
> < MVLC_ISS_DATE>22-08-2003</MVLC_ISS_DATE>

<xsl:template match="MVLC_ISS_DATE/text()">
  <xsl:value-of select="concat(substring-before(substring-after(substring-after(., '-'), '-'), 'T'), '-', substring-before(substring-after(., '-'), '-'), '-', substring-before(., '-'))" />
</xsl:template>

Cheers,

Jarno - God Module: Resurrection

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread
Keywords