Example 8 Previous Next |
//*[name()='BBB'] |
---|
Select all elements with name BBB, equivalent with //BBB |
<AAA> <BCC> <BBB/> <BBB/> <BBB/> </BCC> <DDB> <BBB/> <BBB/> </DDB> <BEC> <CCC/> <DBD/> </BEC> </AAA> |
Open the example in XLab. | Tree view (PNG) |
//*[starts-with(name(),'B')] |
---|
Select all elements name of which starts with letter B |
<AAA> <BCC> <BBB/> <BBB/> <BBB/> </BCC> <DDB> <BBB/> <BBB/> </DDB> <BEC> <CCC/> <DBD/> </BEC> </AAA> |
Open the example in XLab. | Tree view (PNG) |
//*[contains(name(),'C')] |
---|
Select all elements name of which contain letter C |
<AAA> <BCC> <BBB/> <BBB/> <BBB/> </BCC> <DDB> <BBB/> <BBB/> </DDB> <BEC> <CCC/> <DBD/> </BEC> </AAA> |
Open the example in XLab. | Tree view (PNG) |