我需要进一步处理我生成的 xsl 值,如下所示:
<xsl:value-of select="adjust-dateTime-to-timezone(xs:dateTime('2006-02-15T17:00:00-03:00'), xs:dayTimeDuration('-PT7H'))" />
我想得到结果并只保留几个子字符串(3个子字符串操作)。
我怎样才能做到这一点?现在,上面的代码将结果转换为“2006-02-15T13:00:00-07:00”。
我需要进一步处理我生成的 xsl 值,如下所示:
<xsl:value-of select="adjust-dateTime-to-timezone(xs:dateTime('2006-02-15T17:00:00-03:00'), xs:dayTimeDuration('-PT7H'))" />
我想得到结果并只保留几个子字符串(3个子字符串操作)。
我怎样才能做到这一点?现在,上面的代码将结果转换为“2006-02-15T13:00:00-07:00”。
您可以将变量设置为函数返回的值,然后将该变量用于任何其他转换。
<xsl:variable name="result" select="adjust-dateTime-to-timezone(xs:dateTime('2006-02-15T17:00:00-03:00'), xs:dayTimeDuration('-PT7H'))" />
或者
<xsl:variable name="result">
<xsl:value-of select="adjust-dateTime-to-timezone(xs:dateTime('2006-02-15T17:00:00-03:00'), xs:dayTimeDuration('-PT7H'))" />
</xsl:variable>
接着
<xsl:value-of select="$result"/>