select=format-date(current-date(), [Dwo] day of [MNn], [Y0001]) : format date « XSLT stylesheet « XML Tutorial






File: Transform.xslt

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:text>&#xA;  Today is the </xsl:text>
    <xsl:value-of select="format-date(current-date(), '[Dwo] day of [MNn], [Y0001]')"/>

  </xsl:template>

</xsl:stylesheet>

Output:


  Today is the eleventh day of December, 2008








5.22.format date
5.22.1.select=format-date(current-date(), [M01]/[D01]/[Y0001])
5.22.2.select=format-time(current-time(), [H01]:[m01] [z])
5.22.3.select=format-dateTime(current-dateTime(),[h1]:[m01] [P] on [MNn] [D].)
5.22.4.select=format-date(current-date(), [Dwo] day of [MNn], [Y0001])