select="format-date(current-date(),'[dwo]')" : format date « XSLT stylesheet « XML






select="format-date(current-date(),'[dwo]')"


File: Data.xml


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]')"/>
    <xsl:text> day of the year. </xsl:text>
    
  </xsl:template>

</xsl:stylesheet>

Output:


  Today is the three hundred and forty-fifth day of the year. 

 








Related examples in the same category

1.format-date(/orgchart/@date, '[D1] [MNn] [Y1]')
2.December 25, 1960 in German