XPath:基于另一个节点选择一个节点

本文关键字:节点 一个 选择 另一个 XPath | 更新日期: 2023-09-27 17:58:15

考虑以下XML:

<Items>
    <Item>
        <Code>Test</Code>
        <Value>Test</Value>
    </Item>
    <Item>
        <Code>MyCode</Code>
        <Value>MyValue</Value>
    </Item>
    <Item>
        <Code>AnotherItem</Code>
        <Value>Another value</Value>
    </Item>
</Items>

我想选择具有值为MyCodeCode节点的ItemValue节点。如何使用XPath

我试过使用Items/Item[Code=MyCode]/Value,但似乎不起作用。

XPath:基于另一个节点选择一个节点

您的XML数据是错误的。Value标记没有正确匹配的结束标记,而Item标记没有匹配的结束标签(</Item>)。

至于XPath,请尝试将要匹配的数据用引号括起来:

const string xmlString =
@"<Items>
    <Item>
        <Code>Test</Code>
        <Value>Test</Value>
    </Item>
    <Item>
        <Code>MyCode</Code>
        <Value>MyValue</Value>
    </Item>
    <Item>
        <Code>AnotherItem</Code>
        <Value>Another value</Value>
    </Item>
</Items>";
var doc = new XmlDocument();
doc.LoadXml(xmlString);
XmlElement element = (XmlElement)doc.SelectSingleNode("Items/Item[Code='MyCode']/Value");
Console.WriteLine(element.InnerText);

您需要:

/Items/Item[Code="MyCode"]/Value

假设您修复了XML:

<?xml version="1.0"?>
<Items>
  <Item>
    <Code>Test</Code>
    <Value>Test</Value>
  </Item>
  <Item>
    <Code>MyCode</Code>
    <Value>MyValue</Value>
  </Item>
  <Item>
    <Code>AnotherItem</Code>
    <Value>Another value</Value>
  </Item>
</Items>