XML Tutorial/XSLT stylesheet/format time

Материал из Web эксперт
Версия от 21:22, 25 мая 2010; (обсуждение)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Extracting the timezone from an xs:time

   <source lang="xml">

File: Data.xml

File: Transform.xslt <?xml version="1.0"?> <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>Extracting the timezone from an xs:time:</xsl:text>
   <xsl:variable name="currentTime" as="xs:time" select="current-time()"/>
   <xsl:text>The current time is: </xsl:text>
   <xsl:value-of select="$currentTime"/>
   <xsl:text>The current timezone is: </xsl:text>
   <xsl:value-of select="timezone-from-time($currentTime)"/>
   <xsl:text>
    The timezone is also known as </xsl:text>
   <xsl:value-of select="format-time($currentTime, "[ZN]")"/>
 </xsl:template>

</xsl:stylesheet>

Output: Extracting the timezone from an xs:time:The current time is: 13:11:37.593-08:00The current timezone is: -PT8H

   The timezone is also known as -08:00</source>