Here is the original xml file

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <setup>
    <cap>33</cap>
  </setup>
  <setup>
    <cap>dd</cap>
  </setup>
</configuration>

In the example below i delete the node where cap equals to 33

 Dim Cap As integer = 33
        Dim query = From q In XElement.Load(Environment.CurrentDirectory & "\sample.xml").Elements("setup") _
                    Where q.Value = Cap _
                    Select q
        For Each q In query
            If Cap = q.Element("cap").Value Then q.Remove()
        Next

Now how can i write back the result of the query to the .xml file? Like...

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <setup>
    <cap>dd</cap>
  </setup>
</configuration>
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Well, you can just create a new XDocument with the data. (C# syntax, but easily converted...)

XDocument doc = new XDocument(new XElement("configuration", query));
doc.Save(file);
link|improve this answer
Too close... i tried something like Dim doc As XDocument doc.Add(<onfiguration><%= query %></configuration>) doc.Save(... but it didn't work out! Thank you. – Chocol8 Nov 16 '10 at 9:14
feedback

How about using XPath:

Imports System.Xml.XPath

Module Module1

    Sub Main()
        Dim doc = XDocument.Load("foo.xml")
        doc.XPathSelectElements("//setup/cap[text() = 'dd']/..").Remove()
        Console.WriteLine(doc)
    End Sub

End Module
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.