System.XML将值读取到数组中

本文关键字:数组 读取 XML System | 更新日期: 2023-09-27 18:22:51

我需要将XML中的所有文本值读取到列表中。。。

我的XML具有以下格式:

<MultiNodePicker type="content">
  <nodeId>52515</nodeId>
  <nodeId>52519</nodeId>
</MultiNodePicker>

我的代码:

string mystring= @"<MultiNodePicker type='content'>
  <nodeId>52515</nodeId>
  <nodeId>52519</nodeId>
</MultiNodePicker>";
var doc = new XmlDocument();
doc.LoadXml(mystring);
Console.WriteLine(doc.InnerText);  
List<string> ids = doc.GetTextValues???()
  • optiontext:我选择所有文本值,不关心XPath
  • 选项XPath:我选择MultiNodePicker/nodeId
  • optionchilds:我从所有nodeId子节点中选择值

System.XML将值读取到数组中

使用一点LINQ:

var ids = XElement.Parse(mystring)
    .Descendants("nodeId")
    .Select(x => x.Value); // or even .Select(x => int.Parse(x.Value));
foreach(var id in ids) {
    Console.WriteLine(id);
}

使用LinQ到XML:

string mystring = @"<MultiNodePicker type='content'>
<nodeId>52515</nodeId>
<nodeId>52519</nodeId>
</MultiNodePicker>";
var doc = new XmlDocument();
doc.LoadXml(mystring);
List<string> memberNames = XDocument.Parse(mystring)
.XPathSelectElements("//MultiNodePicker/nodeId")
.Select(x => x.Value)
.ToList();