I have an XML document with the following node:
<date>09/01/2012</date>
How can i format the date with XSLT to retrieve another representation of the date?
Here ist the expected result:
<date>2012-01-09</date>
I tried the following rule, but it returns an empty string (i suppose because of the uncommon date input format):
<date><xsl:value-of select="format-date(date, '[Y0001]-[M01]-[D01]')"/></date>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">and i use the php xslt processor – Alp Oct 10 '11 at 11:31