4

xslt 1.0で、次のより洗練されたソリューションはありますか?xslt2.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')
                                           )"/>
4

2 に答える 2

8

これはどう ...

<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>
于 2012-08-13T14:55:57.317 に答える
0

誰かが私が抱えていた問題を抱えていた場合に備えて、上記の答えは素晴らしいものでしたが、Decimal MINUTES を時間:分:秒にする必要がありました。以下は、必要に応じて少し削減するのに役立つ内訳です...

<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'))"/>
于 2016-09-20T04:35:42.587 に答える