查找具有特定属性值的所有元素
想象一下以下 XML:
<root>
<element foobar="hello_world" />
<element example="this is one!" />
</root>
以下 XPath 表达式:
/root/element[@foobar = 'hello_world']
将返回 <element foobar="hello_world" />
元素。
双引号也可以使用:
/root/element[@foobar="hello_world"]