English | česky | Nederlands | >> Français << | Español | По-русски | Deutsch | 中文 | Italiano | Polski ZVON > Tutorials > XPath Tutorial
>> Exemple 4 << | Précédent | Suivant

Une expression entre crochets peut spécifier plus précisément un élément. Un nombre entre crochets donne la position d'un élément dans le jeu sélectionné. La fonction last sélectionne le dernier élément du jeu
 
/AAA/BBB[1]
Sélectionne le premier élément BBB, fils de l'élément racine AAA

     <AAA>
          <BBB/>
          <BBB/>
          <BBB/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)
 
/AAA/BBB[last()]
Sélectionne le dernier élément BBB, fils de l'élément racine AAA

     <AAA>
          <BBB/>
          <BBB/>
          <BBB/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)