如何使用XSLT 1.0将ISO 8601持续时间转换为秒

时间:2009-03-09 17:26:00

标签: xslt

在XSLT 2.0中似乎很容易做到这一点,但微软以其无限的智慧不支持Visual Studio 2005中的XSLT 2.0。

2 个答案:

答案 0 :(得分:4)

使用XSLT 1.0,您必须使用substring-before()和substring-after()将其拆分为单独的字段。然后加倍。毫无疑问,这是可能的,虽然看起来非常费力。

答案 1 :(得分:1)

一种选择是在XSLT中进行所有解析和计算。

但是,另一种选择是使用C#中的自定义脚本函数扩展XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:msxsl="urn:schemas-microsoft-com:xslt"
                xmlns:myext="urn:myExtension"
                exclude-result-prefixes="msxsl myext">

  <xsl:output method="xml" indent="yes"/>

  <msxsl:script language="C#" implements-prefix="myext">

    <![CDATA[

        public int SecondsFromIsoDuration(string isoDuration)
        {
            // parse and convert here;
        }

    ]]>

  </msxsl:script>


  <xsl:template match="@* | node()">
    <root durationInSeconds="{myext:SecondsFromIsoDuration(@duration)}" />
  </xsl:template>
</xsl:stylesheet>

脚本函数将在运行时编译为临时程序集,然后执行。但是,请注意缓存XSLT,因为每个XSLT编译都将创建一个只在应用程序退出时卸载的新程序集。