命名空間選擇節點我有一個像不使用XPath
<root xmlns:ns1="http://foo">
<ns1:child1>Text</ns1:child1>
<ns1:child2>Number</ns1:child2>
</root>
一個xml現在我得到這個由不同的人,因此例如人2送我另一個消息具有相同的結構類似
<root xmlns:anotherNs="http://foo">
<anotherNs:child1>Another Text</anotherNs:child1>
<anotherNs:child2>Another Number</anotherNs:child2>
</root>
所以唯一的區別是命名空間的名稱。如何爲一個XPath表達式的xml選擇child2的內容?
像「/ root/child2」或「// child2」這樣的東西不起作用。