<Root>
<P1 Text ="A" >
<P2 Text = "AA">
<P3 Text = "AAA">
<L Text = "l_A"/>
<L Text = "l_B"/>
<L Text = "l_C"/>
</P3>
<P3 Text = "BBB">
<L Text = "l_D"/>
<L Text = "l_E"/>
<L Text = "l_F"/>
</P3>
</P2>
<P2 Text = "BB">
<L Text = "l_G"/>
<L Text = "l_H"/>
<L Text = "l_I"/>
</P2>
</P1>
</Root>
从一个包含数千个可变嵌套节点的XML文档,最多10个级别,我 想以编程方式检索属于任何“P”父项的叶子 如下:例如,在上面的例子中,选择P2“AA”将产生l_A到l_F并且P3“BBB”将给出l_D到l_F。
答案 0 :(得分:1)
像这样的东西(返回一个字符串列表):
XDocument doc = XDocument.Load(@"test.xml");
string level = "P3";
string levelAttr = "AAA";
var list = (from d in doc.Descendants(level)
let xAttribute = d.Attribute("Text")
where xAttribute != null && xAttribute.Value == levelAttr
from l in d.Descendants("L")
let lAttribute = l.Attribute("Text")
where lAttribute != null
select lAttribute.Value);
如果Text
属性始终存在,您可以删除属性null检查...
答案 1 :(得分:0)
一种方法是使用XmlDocument
的 XPath (如果你不使用 LINQ )
你的 XPath 可能是这样的:
//P2[@Text='AA']//L/@Text
和您的代码如下:
XmlDocument document; //init and load it
static List<String> GetLeavesText(int pLevel /* 2 */, string pText /* AA */)
{
var result = new List<String>();
//loaded document
var nodeList = document.SelectNodes(String.Format(@"//P{0}[@Text='{1}']//L/@Text", pLevel, pText));
if (nodeList != null)
foreach (XmlNode xmlNode in nodeList)
{
result.Add(xmlNode.InnerText);
}
return result;
}