2
<parent>
<Children>
<child name='Child_1'>Child1_Value</child>
<child name='Child_2'>Child2_Value</child>
<child name='Child_3'>Child3_Value</child>
<child name='Child_4'>Child4_Value</child>
</Children>
</parent>
在上面的結構中,我們如何獲取Child1,2,3,4屬性值的值,即。 Child1_Value,Child2_Value等使用XPATH而不使用String或Data函數。 任何幫助深表感謝Xpath檢索一個節點的文本值
我使用的是下面的XPath,但我與child
元素的真值
/parent/Children/child[@name="Child_1"]
爲什麼你不能使用字符串或數據函數? –