>> English << | česky | Nederlands | Français | Español | По-русски | Deutsch | 中文 | Italiano | Polski ZVON > Tutorials > XPath Tutorial
>> Example 10 << | Prev | Next

Several paths can be combined with | separator.
 
//CCC | //BBB
Select all elements CCC and BBB

     <AAA>
          <BBB/>
          <CCC/>
          <DDD>
               <CCC/>
          </DDD>
          <EEE/>
     </AAA>
Open the example in XLab. | Tree view (JPG)
 
/AAA/EEE | //BBB
Select all elements BBB and elements EEE which are children of root element AAA

     <AAA>
          <BBB/>
          <CCC/>
          <DDD>
               <CCC/>
          </DDD>
          <EEE/>
     </AAA>
Open the example in XLab. | Tree view (JPG)
 
/AAA/EEE | //DDD/CCC | /AAA | //BBB
Number of combinations is not restricted

     <AAA>
          <BBB/>
          <CCC/>
          <DDD>
               <CCC/>
          </DDD>
          <EEE/>
     </AAA>
Open the example in XLab. | Tree view (JPG)