I have a XML attributes, <EventDate>2011-06-16 08:00:00</EventDate>
and I want to extract 08:00:00
using XSLT.
I saw there was fn:hours-from-dateTime(datetime)
thanks to w3schools. So I'm wondering, why is there no fn:time-from-dateTime(datetime)
?
And how do I use it? My current code is :
<td><xsl:value-of select="@EventDate"/></td>
Which display the dateTime correctly. However :
<td><xsl:value-of select="hours-from-dateTime(@EventDate)"/></td>
Doesn't work.
Finally, is there something more elegant than doing :
<td><xsl:value-of select="hours-from-dateTime(@EventDate)"/>:
<xsl:value-of select="minutes-from-dateTime(@EventDate)"/>:
<xsl:value-of select="seconds-from-dateTime(@EventDate)"/></td>
?
Thanks for both suggestion, but since I didn't really need it as a dateTime variable, I just treated it as a string and used :
<xsl:value-of select="substring-after(@EventDate, ' ')"/>