last 函数 (XPath)
返回的数字等于表达式计算上下文的上下文大小。
number last()
注释
以下指令查找每个 <book> 元素的最后一个 <author> 子级:
book/author[last()]
示例
此示例阐释如何使用 last() 函数选择包含于以下 XML 文档的每一个 x 元素中的最后一个 y 元素。
XML 文件 (test.xml)
<?xml version="1.0"?>
<!DOCTYPE test [
<!ELEMENT test (x+)>
<!ELEMENT x (x+| y+)>
<!ATTLIST x
a ID #REQUIRED>
<!ELEMENT y ANY>
]>
<test>
<x a="a11">
<x a="a21">
<x a="a31">
<y>y31</y>
<y>y32</y>
</x>
</x>
</x>
<x a="a12">
<x a="a22">
<y>y21</y>
<y>y22</y>
</x>
</x>
<x a="a13">
<y>y11</y>
<y>y12</y>
</x>
<x a="a14">
<y>y03</y>
<y>y04</y>
</x>
</test>
XSLT 文件 (test.xsl)
请注意该 XSLT 样式表中的粗体说明。
<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<!-- Suppress text nodes not covered in subsequent
template rule -->
<xsl:template match="text()"/>
<xsl:template match="*">
<xsl:element name="{name()}">
<xsl:apply-templates select="*|@*"/>
<xsl:if test="text()">
<xsl:value-of select="."/>
</xsl:if>
</xsl:element>
</xsl:template>
<xsl:template match="@*">
<xsl:attribute name="{name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
<xsl:template match="/test">
<xsl:apply-templates select="//x/y[last()]"/>
</xsl:template>
</xsl:stylesheet>
输出
应用于上述 XML 文件的 XSLT 样式表将产生下列节点集:
<y>y32</y>
<y>y22</y>
<y>y12</y>
<y>y04</y>