• <legend id='knyea'><style id='knyea'><dir id='knyea'><q id='knyea'></q></dir></style></legend>

    1. <tfoot id='knyea'></tfoot>
      • <bdo id='knyea'></bdo><ul id='knyea'></ul>

        <small id='knyea'></small><noframes id='knyea'>

        <i id='knyea'><tr id='knyea'><dt id='knyea'><q id='knyea'><span id='knyea'><b id='knyea'><form id='knyea'><ins id='knyea'></ins><ul id='knyea'></ul><sub id='knyea'></sub></form><legend id='knyea'></legend><bdo id='knyea'><pre id='knyea'><center id='knyea'></center></pre></bdo></b><th id='knyea'></th></span></q></dt></tr></i><div id='knyea'><tfoot id='knyea'></tfoot><dl id='knyea'><fieldset id='knyea'></fieldset></dl></div>

        使用 LINQ 从 xml 中删除元素

        时间:2023-08-28

          <tbody id='Dl0YI'></tbody>

            <legend id='Dl0YI'><style id='Dl0YI'><dir id='Dl0YI'><q id='Dl0YI'></q></dir></style></legend>
            • <bdo id='Dl0YI'></bdo><ul id='Dl0YI'></ul>
            • <tfoot id='Dl0YI'></tfoot>

              <small id='Dl0YI'></small><noframes id='Dl0YI'>

              <i id='Dl0YI'><tr id='Dl0YI'><dt id='Dl0YI'><q id='Dl0YI'><span id='Dl0YI'><b id='Dl0YI'><form id='Dl0YI'><ins id='Dl0YI'></ins><ul id='Dl0YI'></ul><sub id='Dl0YI'></sub></form><legend id='Dl0YI'></legend><bdo id='Dl0YI'><pre id='Dl0YI'><center id='Dl0YI'></center></pre></bdo></b><th id='Dl0YI'></th></span></q></dt></tr></i><div id='Dl0YI'><tfoot id='Dl0YI'></tfoot><dl id='Dl0YI'><fieldset id='Dl0YI'></fieldset></dl></div>

                1. 本文介绍了使用 LINQ 从 xml 中删除元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一个 xml 文件,例如:

                  I've a xml file like:

                  <starting>
                     <start>
                        <site>mushfiq.com</site>
                        <site>mee.con</site>
                        <site>ttttt.co</site>
                        <site>jkjhkhjkh</site>
                        <site>jhkhjkjhkhjkhjkjhkh</site>
                       <site>dasdasdasdasdasdas</site>
                   </start>
                  </starting>
                  

                  现在我需要删除任何 <site>...</site> 并且值将从文本框中随机给出.

                  Now I need to delete any <site>...</site> and value will randomly be given from a textbox.

                  这是我的代码:

                  XDocument doc = XDocument.Load(@"AddedSites.xml");                
                  var deleteQuery = from r in doc.Descendants("start") where r.Element("site").Value == txt.Text.Trim() select r;
                  foreach (var qry in deleteQuery)
                  {
                      qry.Element("site").Remove();
                  }
                  doc.Save(@"AddedSites.xml");
                  

                  如果我把第一个元素的值放在文本框中,那么它可以删除它,但是如果我把除了第一个元素的值之外的任何元素值都不能删除!我需要输入任何元素的任何值...因为它可以是第 2 个元素或第 3 个或第 4 个等等....任何人都可以帮助我吗?

                  If I put the value of first element in the textbox then it can delete it, but if I put any value of element except the first element's value it could not able to delete! I need I'll put any value of any element...as it can be 2nd element or 3rd or 4th and so on.... can anyone help me out?

                  推荐答案

                  好的,通过进一步的编辑,你想做什么就更清楚了,而且碰巧它比你做的要容易得多,这要归功于Remove 扩展方法 在 IEnumerable<T>其中 T : XNode:

                  Okay, with further editing, it's clearer what you want to do, and as it happens it's significantly easier than you're making it, thanks to the Remove extension method on IEnumerable<T> where T : XNode:

                  string target = txt.Text.Trim();
                  doc.Descendants("start")
                     .Elements("site")
                     .Where(x => x.Value == target)
                     .Remove();
                  

                  这就是你所需要的.

                  这篇关于使用 LINQ 从 xml 中删除元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:解析格式错误的 XML 下一篇:在 C# 中使用 Html 敏捷性解析表格、单元格

                  相关文章

                  最新文章

                  <tfoot id='0B4Fx'></tfoot>
                  <legend id='0B4Fx'><style id='0B4Fx'><dir id='0B4Fx'><q id='0B4Fx'></q></dir></style></legend>

                      <bdo id='0B4Fx'></bdo><ul id='0B4Fx'></ul>
                  1. <small id='0B4Fx'></small><noframes id='0B4Fx'>

                    1. <i id='0B4Fx'><tr id='0B4Fx'><dt id='0B4Fx'><q id='0B4Fx'><span id='0B4Fx'><b id='0B4Fx'><form id='0B4Fx'><ins id='0B4Fx'></ins><ul id='0B4Fx'></ul><sub id='0B4Fx'></sub></form><legend id='0B4Fx'></legend><bdo id='0B4Fx'><pre id='0B4Fx'><center id='0B4Fx'></center></pre></bdo></b><th id='0B4Fx'></th></span></q></dt></tr></i><div id='0B4Fx'><tfoot id='0B4Fx'></tfoot><dl id='0B4Fx'><fieldset id='0B4Fx'></fieldset></dl></div>