This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Converting date formats


Hi, Doug:

  The easiest way to do this is use substring(),
example:

<xsl:variable name="date" select="20010607"/>
<xsl:value-of select="substring($date, 7, 2)"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="substring($date, 5, 2)"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="substring($date, 1, 4)"/>

Hope this helps,
Xiaocun

--- "Hewko, Doug" <Doug.Hewko@ccra-adrc.gc.ca> wrote:
> In my XML document, I have a date stored in ISO
> format:
> <LASTUPDATED FORMAT="ISODATE">20010125</LASTUPDATED>
> 
> How can I convert this in my XSL file to dd/mm/yyy
> format (with the dashes)?
> 
> I am currently using the command:
> 			<td><xsl:value-of select="LASTUPDATED"/></td>
> 
> 
> 
>  XSL-List info and archive: 
> http://www.mulberrytech.com/xsl/xsl-list
> 


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]