| Author |
Attributr in XPath
|
Urs Waefler
Ranch Hand
Joined: Mar 13, 2007
Posts: 77
|
|
Hi,
First there is a XML:
Second there is my XSLT-stylesheet:
Third there is the output:
Everything works fine, there is one mistake only. In the output should not be for instance p6 or p7. There should appear the real names like Marie Dupont or Philippe Dubois. How can I achieve this?
Regards, Urs
|
SCJP 1.4
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3793
|
|
So you need to take the value of the attribute, and use that in an XPath expression to find the name of the person it matches? Try using this expression:
<xsl:value-of select="/FAMILYTREE/PERSON[@ID = current()/@MOTHER]/NAME" />
Translates as "find the PERSON with an ID attribute matching the MOTHER attribute of my current node, and take their name".
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
|
Or if you expect to do this on larger documents, you might want to consider an <xsl:key> element. The w3schools tutorial about that element has an example which could almost be dropped unchanged into your code.
|
 |
 |
|
|
subject: Attributr in XPath
|
|
|