查找具有特定属性的所有元素
想象一下以下 XML:
<root>
<element foobar="hello_world" />
<element example="this is one!" />
</root>
/root/element[@foobar]
并将返回 <element foobar="hello_world" />
元素。
想象一下以下 XML:
<root>
<element foobar="hello_world" />
<element example="this is one!" />
</root>
/root/element[@foobar]
并将返回 <element foobar="hello_world" />
元素。