xPath获取具有特定值的元素的兄弟值

时间:2013-02-20 21:02:52

标签: c# xml xpath

鉴于此XML:

<InitResponse>
  <LottoToken>908ec70b308adf10d04db1478ef9b01b</LottoToken>
  <GameInfoList>
    <GameInfo>
      <Draw>
        <gameId>L649</gameId>
        <draw>3035</draw>
      </Draw>
    </GameInfo>
    <GameInfo>
      <Draw>
        <gameId>BC49</gameId>
        <draw>2199</draw>
      </Draw>
    </GameInfo>
  </GameInfoList>
</InitResponse>

我需要根据特定的gameId得到抽奖号码。例如,如果我指定gameID L649,我需要得到3035。

以下适用于多个在线评估者,但不适用于C#。它说它找不到它。建议?

/InitResponse/GameInfoList/GameInfo/Draw/draw[preceding-sibling::gameId='L649']

C#Code我试过了:

XmlNode node = xmlDoc.SelectSingleNode("/InitResponse/GameInfoList/GameInfo/Draw/draw[preceding-sibling::gameId='L649']");

...其中xmlDoc是一个用xml加载的xmlDocument对象。节点变量以空值结束,似乎表明找不到匹配项。

2 个答案:

答案 0 :(得分:5)

这是xpath(使用Linq)

var xdoc = XDocument.Load(path_to_xml);
string xpath = "/InitResponse/GameInfoList/GameInfo/Draw[gameId='L649']/draw";
var draw = xdoc.XPathSelectElement(xpath);
if (draw != null) // check if draw with gameId found in xml
    value = (int)draw;

此外,您可以使用纯Linq到Xml(但在这种情况下,xpath看起来更紧凑):

var draw = xdoc.Descendants("GameInfo")
               .SelectMany(g => g.Elements("Draw"))
               .SingleOrDefault(d => (string)d.Element("gameId") == "L649");
if (draw != null)
    value = (int)draw.Element("draw");

答案 1 :(得分:1)

使用XmlDocument

我在XPath声明中没有看到错误,请查看以下内容:

(所以我猜还有别的东西是错的)

XmlDocument myDoc = new XmlDocument();

String str = @"<InitResponse>
                 <LottoToken>908ec70b308adf10d04db1478ef9b01b</LottoToken>
                     <GameInfoList>
                         <GameInfo>
                             <Draw>
                               <gameId>L649</gameId>
                               <draw>3035</draw>
                              /Draw>
                            </GameInfo>
                            <GameInfo>
                              <Draw>
                                <gameId>BC49</gameId>
                                <draw>2199</draw>
                              </Draw>
                            </GameInfo>
                          </GameInfoList>
                        </InitResponse>";

            myDoc.LoadXml(str);

            XmlNode node =
                myDoc.SelectSingleNode("/InitResponse/GameInfoList/GameInfo/Draw/draw[preceding-sibling::gameId='L649']");

从结果返回的节点是:3035

注意:您的第一个音符必须是<InitResponse>否则会返回null