需要将文本值“2012-03-19”转换为日期类型,然后提取年份组件。
<xsl:variable name="dateValue" select="2012-03-19"/>
<xsl:variable name="year" select="year-from-date(date($dateValue))"/>
我正在使用Saxon 2.0,但抱怨date
功能不存在;我查看了Saxon的文档并找不到该功能,所以这显然是问题,但我找不到合适的替代品。
答案 0 :(得分:8)
我认为date()
不应该是一个函数,您需要xs:date()
数据类型。
添加xs
命名空间,然后添加前缀xs:date()
。
以下样式表使用任何格式良好的XML输入,将生成2012
:
<xsl:stylesheet version="2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:variable name="dateValue" select="'2012-03-19'"/>
<xsl:variable name="year" select="year-from-date(xs:date($dateValue))"/>
<xsl:value-of select="$year"/>
</xsl:template>
</xsl:stylesheet>
请注意,您还必须在“dateValue”select
中引用xsl:variable
。