How to get the attribute value of the last element?

euler

Input XML

<pageMeta>
  <trail target="/">SAIR Home</trail>
  <trail target="/handle/10862/1">SEAFDEC Aquaculture Department</trail>
  <trail target="/handle/10862/46">SEAFDEC/AQD Publications</trail>
  <trail target="/handle/10862/85">Institutional and Meeting Reports</trail>
  <trail target="/handle/10862/699">Institutional Reports</trail>
  <trail target="/handle/10862/527">Annual Reports</trail>
</pageMeta>

Using select="pageMeta/trail[@target][last()], I get the Annual Reports value. How can I get the value of the last @targetattribute which is /handle/10862/527?

Thanks in advance.

har07

You can simply put the attribute name as the last step of the XPath expression to return the attribute :

select="pageMeta/trail[@target][last()]/@target"

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Angular element directive how to get attribute value

From Dev

How to get the value of the attribute of element in angular 2?

From Dev

XSLT - How to tell if an element with specific attribute value is the last in the matching series

From Dev

get element attribute value in Protractor

From Dev

How to get targeted element's attribute value in fabric.js

From Dev

SQL Server: How to get the value of a XML element specifying an attribute?

From Dev

Angularjs | how to get an attribute value from element in which controller is defined

From Dev

How get parent element attribute and child value from XML in java?

From Dev

how to return element attribute value

From Dev

How to find a value of an attribute of an element

From Dev

How to get an attribute of an Element that is namespaced

From Dev

How to get current element attribute

From Dev

How to get an attribute of element by jquery

From Dev

How to get the element before last?

From Java

How to get the last element of a slice?

From Dev

How to get the element before last?

From Dev

Get attribute value in SimpleXML object by element and another attribute value

From Dev

CSS Selector to get the element attribute value

From Dev

DOM structure, get element by attribute name/value

From Dev

Trying to get the href attribute value of parent element

From Dev

Jquery: Get attribute value of dynamically created element

From Dev

AWK get attribute value from XML element

From Dev

Trying to get the href attribute value of parent element

From Dev

Get value attribute from an li element

From Dev

android SAXparser get element use attribute value

From Dev

Get xml element with specific attribute value in XmlDocument

From Dev

Get element depending on value of attribute within

From Dev

get value of last occurrence of json element in javascript

From Dev

How to get the '{element:}' value?

Related Related

  1. 1

    Angular element directive how to get attribute value

  2. 2

    How to get the value of the attribute of element in angular 2?

  3. 3

    XSLT - How to tell if an element with specific attribute value is the last in the matching series

  4. 4

    get element attribute value in Protractor

  5. 5

    How to get targeted element's attribute value in fabric.js

  6. 6

    SQL Server: How to get the value of a XML element specifying an attribute?

  7. 7

    Angularjs | how to get an attribute value from element in which controller is defined

  8. 8

    How get parent element attribute and child value from XML in java?

  9. 9

    how to return element attribute value

  10. 10

    How to find a value of an attribute of an element

  11. 11

    How to get an attribute of an Element that is namespaced

  12. 12

    How to get current element attribute

  13. 13

    How to get an attribute of element by jquery

  14. 14

    How to get the element before last?

  15. 15

    How to get the last element of a slice?

  16. 16

    How to get the element before last?

  17. 17

    Get attribute value in SimpleXML object by element and another attribute value

  18. 18

    CSS Selector to get the element attribute value

  19. 19

    DOM structure, get element by attribute name/value

  20. 20

    Trying to get the href attribute value of parent element

  21. 21

    Jquery: Get attribute value of dynamically created element

  22. 22

    AWK get attribute value from XML element

  23. 23

    Trying to get the href attribute value of parent element

  24. 24

    Get value attribute from an li element

  25. 25

    android SAXparser get element use attribute value

  26. 26

    Get xml element with specific attribute value in XmlDocument

  27. 27

    Get element depending on value of attribute within

  28. 28

    get value of last occurrence of json element in javascript

  29. 29

    How to get the '{element:}' value?

HotTag

Archive