XML Tutorial/XSLT stylesheet/format date

Материал из Web эксперт
Перейти к: навигация, поиск

select=format-date(current-date(), [Dwo] day of [MNn], [Y0001])

   <source lang="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>
  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</source>
   
  

select=format-date(current-date(), [M01]/[D01]/[Y0001])

   <source lang="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">
 <xsl:output method="text"/>
 <xsl:template match="/">
   <xsl:text>
  The current date is </xsl:text>
   <xsl:value-of select="format-date(current-date(), "[M01]/[D01]/[Y0001]")"/>
 </xsl:template>

</xsl:stylesheet> Output:

 The current date is 12/11/2008</source>
   
  

select=format-dateTime(current-dateTime(),[h1]:[m01] [P] on [MNn] [D].)

   <source lang="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">
 <xsl:output method="text"/>
 <xsl:template match="/">
   <xsl:text>
  It"s currently </xsl:text>
   <xsl:value-of select="format-dateTime(current-dateTime(),"[h1]:[m01] [P] on [MNn] [D].")"/>
 </xsl:template>

</xsl:stylesheet> Output:

 It"s currently 1:09 p.m. on December 11.</source>
   
  

select=format-time(current-time(), [H01]:[m01] [z])

   <source lang="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">
 <xsl:output method="text"/>
 <xsl:template match="/">
   <xsl:text>
  The current time is </xsl:text>
   <xsl:value-of select="format-time(current-time(), "[H01]:[m01] [z]")"/>
 </xsl:template>

</xsl:stylesheet> Output:

 The current time is 13:09 GMT-8</source>