我正在使用XSLT 1.0,我将时间值存储为军事时间中的整数,因此需要将其输出为标准时间。例如,值将为1400,我需要将其输出到2:00 PM。可以在XSLT 1.0中实现吗?
答案 0 :(得分:3)
这不仅仅是格式化。您还希望将24小时制转换为12小时制。
输入以下内容:
XML
<input>1435</input>
以下样式表:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<output>
<xsl:variable name="h" select="input div 100"/>
<xsl:variable name="m" select="input mod 100"/>
<xsl:variable name="h12" select="round(($h + 11) mod 12 + 1)"/>
<xsl:variable name="am.pm" select="substring('AMPM', 1 + 2*($h > 11), 2)"/>
<xsl:value-of select="$h12"/>
<xsl:text>:</xsl:text>
<xsl:value-of select="format-number($m, '00')"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$am.pm"/>
</output>
</xsl:template>
</xsl:stylesheet>
将返回:
结果
<?xml version="1.0" encoding="UTF-8"?>
<output>2:35 PM</output>