这是一种方法。鉴于您的示例,我假设包含“h”的元素永远不会包含“s”。
这个 XSLT 样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes" omit-xml-declaration="yes"/>
<!-- The identity transform. -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- Match MediaInfoDuration elements containing 'h'. -->
<xsl:template match="MediaInfoDuration[contains(., 'h')]">
<Duration>
<xsl:call-template name="hh-mm-ss">
<xsl:with-param name="hours" select="substring-before(., 'h')" />
<xsl:with-param name="minutes" select="substring-before(substring-after(., 'h '), 'mn')"/>
</xsl:call-template>
</Duration>
</xsl:template>
<!-- Match the other kind of MediaInfoDuration element. -->
<xsl:template match="MediaInfoDuration">
<Duration>
<xsl:call-template name="hh-mm-ss">
<xsl:with-param name="minutes" select="substring-before(., 'mn')" />
<xsl:with-param name="seconds" select="substring-before(substring-after(., 'mn '), 's')"/>
</xsl:call-template>
</Duration>
</xsl:template>
<!-- Formatting the output. -->
<xsl:template name="hh-mm-ss">
<xsl:param name="hours" select=" '0' "/>
<xsl:param name="minutes" select=" '0' " />
<xsl:param name="seconds" select=" '0' "/>
<xsl:value-of select="format-number($hours, '00')"/>
<xsl:text>:</xsl:text>
<xsl:value-of select="format-number($minutes, '00')"/>
<xsl:text>:</xsl:text>
<xsl:value-of select="format-number($seconds, '00')"/>
</xsl:template>
</xsl:stylesheet>
当应用于此输入 XML 时:
<root>
<MediaInfoDuration>56mn 48s</MediaInfoDuration>
<MediaInfoDuration>1h 58mn</MediaInfoDuration>
</root>
产生这个输出:
<root>
<Duration>00:56:48</Duration>
<Duration>01:58:00</Duration>
</root>