1

我有一个带有 xsl 的 xml 文件,我正在尝试更改数字的显示方式。在 xml 中,所有数字的格式为 00:12:34

我需要删除前 2 个零和冒号,只显示 12:34

我不确定我是使用子字符串还是十进制格式。我对此很陌生,所以任何帮助都会很棒。

xsl中的代码如下:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
    <body>
        <table class="albumTable" cellpadding="0" cellspacing="0" border="0" width="100%">    
            <xsl:for-each select="track">
            <tr>
                <td><xsl:value-of select="duration"/></td>
            </tr>
            </xsl:for-each>
        </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>
4

1 回答 1

5

这很简单:

<xsl:value-of select="substring-after(duration, ':')" />

请参阅:substring-after()在 W3C XPath 1.0 规范中。


这更具防御性(对于“小时”部分出乎意料地不是的情况'00:'):

<xsl:choose>
  <xsl:when test="substring(duration, 1, 3) = '00:')">
    <xsl:value-of select="substring-after(duration, ':')" />
  </xsl:when>
  <xsl:otherwise>
    <xsl:value-of select="duration" />
  </xsl:otherwise>
</xsl:choose>
于 2009-07-30T09:23:28.790 回答