attribute - Sélectionne tous les attributs d'un élément

Syntaxe

attribute

Description

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

Pour information, la syntaxe allégée remplace attribute:: par @.

Exemple

Source initial en Xml

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

Expression Xml Path

<-- En partant de <Employe Numero=7832>, selectionne les attributs de l'employe. -->
attribute::Numero
<-- En syntaxe allegee : @Numero -->

Résultat Xml de l'extraction Xml Path

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

Voir aussi

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