XML标签中的最后一个元素?

时间:2012-10-17 11:37:25

标签: xml

<Object ID="320">
  <Document Name="A" />
  <Document Name="B" />
  <Document Name="C" />
  <Document Name="D" />
  <book>1</book>
  <book>2</book>
  <book>8</book>
</Object>

FOR这个XML结构我想要到达Name的最后一个索引?

 Name="D"

我该怎么办?

1 个答案:

答案 0 :(得分:0)

如果您正在寻找xslt:

<xsl:template match="Object">
    <xsl:value-of select="descendant::Document[last()]"/>
</xsl:template>