Mega Code Archive

 
Categories / XML Tutorial / XSLT StyleSheet
 

Select=format-time(current-time(), [H01]

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>&#xA;  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