parent

Instruction Xml Path. Sélection du noeud parent.

Syntaxe

parent

Description

L'instruction parent permet de sélectionner le noeud parent du noeud courant. Le tri est selon l'inverse du numéro d'ordre des noeuds.

Exemple

Source initial en Xml

<?xml version="1.0"?>
<ListeEmployes </ListeEmployes>

Expression Xml Path

<-- En partant de <Nom>Mister Scott</Nom>, selectionne l'employe. -->
parent::Employe

Résultat Xml de l'extraction Xml Path

<?xml version="1.0"?>
<Employe Numero=7724> </Employe>

Voir aussi

ancestor, ancestor-or-self, attribute, child, descendant, descendant-or-self, following, following-sibling, namespace, preceding, preceding-sibling et self pour définir un axe autrement.