Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<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 This XML structure I want to reach last index of Name?

 Name="D"

How can I do?

share|improve this question
1  
Ummm, take the XML, parse it, use traversal methods and locate the last element? Are you doing this programmatically or something? – BoltClock Oct 17 '12 at 11:40

1 Answer

If you are looking for xslt:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.