XML/XSLT stylesheet/format time

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

select="format-time(current-time(), "[m1o] minute of the [Hwo] hour of the day.")"

   <source lang="xml">

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>
  Right now is the </xsl:text>
   <xsl:value-of select="format-time(current-time(), "[m1o] minute of the [Hwo] hour of the day.")"/>
 </xsl:template>

</xsl:stylesheet> Output:

 Right now is the 42nd minute of the sixteenth hour of the day.
</source>