child

Instruction Xml Path. Sélection des noeuds fils.

Syntaxe

child

Description

L'instruction child permet de sélectionner les noeuds fils du noeud courant. Le tri est selon le numéro d'ordre des noeuds.

Pour information, la syntaxe allégée omet child::.

Exemple

Source initial en Xml

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

Expression Xml Path

<-- Selectionne les noms des employes de la liste. -->
/child::ListeEmployes/child::Employe/child::Nom
<-- En syntaxe allegee : /ListeEmployes/Employe/Nom -->

Résultat Xml de l'extraction Xml Path

<?xml version="1.0"?>
<Nom>Mister Scott</Nom>
<Nom>Mister Allen</Nom>
<Nom>Lady Smith</Nom>
<Nom>Miss King</Nom>

Voir aussi

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