>> English << | česky | Nederlands | Français | Español | По-русски | Deutsch | 中文 | Italiano | Polski | ZVON > Tutorials > XPath Tutorial |
Intro / Search / ZVON |
>> Example 6 << | Prev | Next |
//BBB[@id='b1'] |
---|
Select BBB elements which have attribute id with value b1 |
<AAA> <BBB id = "b1"/> <BBB name = " bbb "/> <BBB name = "bbb"/> </AAA> |
Open the example in XLab. | Tree view (JPG) |
//BBB[@name='bbb'] |
---|
Select BBB elements which have attribute name with value 'bbb' |
<AAA> <BBB id = "b1"/> <BBB name = " bbb "/> <BBB name = "bbb"/> </AAA> |
Open the example in XLab. | Tree view (JPG) |
//BBB[normalize-space(@name)='bbb'] |
---|
Select BBB elements which have attribute name with value bbb, leading and trailing spaces are removed before comparison |
<AAA> <BBB id = "b1"/> <BBB name = " bbb "/> <BBB name = "bbb"/> </AAA> |
Open the example in XLab. | Tree view (JPG) |