使用 Xpath 或 LINQ to XML 搜索内部元素
我有如下所示的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于更新XML版本,到目前为止,微软的XML解析器和API仅支持XML版本1.0,不支持XML版本1.1。
至于检查 DR 元素是否没有 foo 子元素并添加一个,您可以这样做,例如
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 nofoo
child element and adding one you can do e.g.