查詢具有特定屬性的所有元素
想象一下以下 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" />
元素。