将十进制小时转换为小时分钟和秒



xslt 1.0中是否有更优雅的解决方案?我知道 xslt 2.0 有内置函数。

我以十进制小时为单位取一个数字,需要将其表示为 HH:MM:SS。目前,我有以下功能良好的功能。

<xsl:variable name="decimal_hours" select="pre_lab_cost div pre_labour_rate"/>
<xsl:variable name="decimal_minutes" select="number(concat('0.',substring-after($decimal_hours, '.')))*60"/>
<xsl:variable name="decimal_seconds" select="number(concat('0.',substring-after($decimal_minutes, '.')))*60"/>
<xsl:value-of select="concat(format-number(floor($decimal_hours), '00'),
                                           ':',
                                           format-number(floor($decimal_minutes), '00'),
                                           ':',
                                           format-number(floor($decimal_seconds), '00')
                                           )"/>

这个怎么样...

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:variable name="decimal_hours" select="3.14"/>
<xsl:template match="/">
<xsl:value-of select="concat(
  format-number(floor($decimal_hours              ), '00:'),
  format-number(floor($decimal_hours *  60 mod  60), '00:'),
  format-number(floor($decimal_hours * 360 mod 360), '00'))"/>
</xsl:template>
</xsl:stylesheet>

以防万一有人遇到我刚刚遇到的问题,上面的答案很棒,但我需要将十进制分钟转换为小时:分钟:秒。因此,如果需要,以下是帮助的细分,稍微削减一下......

<xsl:value-of select="concat(
  format-number(floor($Decimal_Minutes div 60), '00:'),
  format-number(floor($Decimal_Minutes mod 60), '00:'),
  format-number(($Decimal_Minutes - floor($Decimal_Minutes)) * 60, '00'))"/>

相关内容

  • 没有找到相关文章