使用 Xpath 或 LINQ to XML 搜索内部元素

发布于 2024-12-12 11:00:45 字数 345 浏览 0 评论 0原文

我有如下所示的 XML

<?xml version="1.0" ?> 
<Hospital>
  <DR>
    <Salary>1000</Salary>
    <bonus> 3 </bonus>
  </DR>
  <Nurse>
    <Shift> </Shift>
  </Nurse>
</Hospital>

我想在 Dr 节点中搜索子元素,例如如果不存在则插入它并更新文件,

以及如何使用 C# 更新 XML 版本

I have XML like the following

<?xml version="1.0" ?> 
<Hospital>
  <DR>
    <Salary>1000</Salary>
    <bonus> 3 </bonus>
  </DR>
  <Nurse>
    <Shift> </Shift>
  </Nurse>
</Hospital>

I want to search in Dr node for sub element for example if not exist insert it and update the file,

also how to update the XML version , using C#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖微凉心微凉 2024-12-19 11:00:45

至于更新XML版本,到目前为止,微软的XML解析器和API仅支持XML版本1.0,不支持XML版本1.1。

至于检查 DR 元素是否没有 foo 子元素并添加一个,您可以这样做,例如

XDocument doc = XDocument.Load("input.xml");
XElement dr = doc.Root.Element("DR");
if (dr.Element("foo") == null)
{
  dr.Add(new XElement("foo", "..."));
}
doc.Save("output.xml"); // of course here you can overwrite the original file if needed

As for updating the XML version, so far Microsoft's XML parsers and APIs solely support XML version 1.0, there is no support for XML version 1.1.

As for checking whether the DR element has no foo child element and adding one you can do e.g.

XDocument doc = XDocument.Load("input.xml");
XElement dr = doc.Root.Element("DR");
if (dr.Element("foo") == null)
{
  dr.Add(new XElement("foo", "..."));
}
doc.Save("output.xml"); // of course here you can overwrite the original file if needed
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文