1

私はこの構造を持っています、

XML 構造

これで xpath を使用して、最初に ID W01001 を見つけてから、同じレベルで _ の値を取得できますか?

xml は Web サービスの結果であり、さまざまな質問、入力、および返される結果のタイプの間で変化します。信頼できるのは W01001、W01002 などだけなので、xpath はそれしか使用できません。

これが xpath でできない場合、どの代替ソリューションを提案しますか?

4

1 に答える 1

0

I am really not entirely sure about what the elements in brackets mean or what you structure is, but assuming that the _ is an attribute (not sure if it can be), the node would be:

//*[@id='W01001']/@_

if it is shortcut for the element, it would be:

//*[@id='W01001']
于 2012-07-10T08:34:47.043 に答える