I have a XML xElement like:

<Play> 
    <Trick Lead="E" Win="S" TNum="1">S3.S2.S4.SA></Trick>
    <Trick Lead="S" Win="N" TNum="2">DK.DA.D6.DQ></Trick>
    ..../...
    <Trick Lead="" Win="" TNum="7"></Trick>   
        .../...
    <Trick Lead="" Win="" TNum="13"></Trick>
</Play> 

In order to get rid of Trick nodes where value is null, I wrote:

myXmlElement.<Play>.<Trick>.Where(Function(m) m.<Trick>.Value = "").Remove()

Which works very well... Actually it works far too well, since ALL trick nodes are removed!

What do I do wrong? Is there a simpler way to proceed, without lambda expression?

link|improve this question

55% accept rate
I've never seen linq, but I'm kinda wondering about this part: Value = ""?. Shouldn't you compare it to "", not set it to ""? I'd try using this: Value == "" (I'm pretty sure I'm wrong). – Blender Apr 19 '11 at 16:12
There is no "==" in Visual Basic, but maybe there is ".Equals"... I'll give it a go if no answer. Besides, If you've never seen Linq, why answer a Linq question? LOL. re-besides: You should give it a go, Linq rocks! – Didier Levy Apr 19 '11 at 16:15
Darn you Visual Basic! – Blender Apr 19 '11 at 16:17
2  
Visual Basic actually keeps my neurons saner :-) – Didier Levy Apr 19 '11 at 22:21
feedback

4 Answers

Is that your complete XML element or a portion of it? It seems to be part of a larger element since I couldn't reproduce your results with just that portion.

If it's part of a larger piece of XML, use this approach:

Dim xml = <root><Play> 
    <Trick Lead="E" Win="S" TNum="1">S3.S2.S4.SA></Trick>
    <Trick Lead="S" Win="N" TNum="2">DK.DA.D6.DQ></Trick>
    <Trick Lead="" Win="" TNum="7"></Trick>   
    <Trick Lead="" Win="" TNum="13"></Trick>
</Play></root>

xml.<Play>.<Trick>.Where(Function(m) m.Value = "").Remove()

Notice that the XML is wrapped in <root> nodes and the <Trick> reference has been omitted from the Where method.

If the XML is as you presented it, use this approach:

Dim xml = <Play> 
    <Trick Lead="E" Win="S" TNum="1">S3.S2.S4.SA></Trick>
    <Trick Lead="S" Win="N" TNum="2">DK.DA.D6.DQ></Trick>
    <Trick Lead="" Win="" TNum="7"></Trick>   
    <Trick Lead="" Win="" TNum="13"></Trick>
</Play>

xml.<Trick>.Where(Function(m) m.Value = "").Remove()
Console.WriteLine(xml)

In the above sample, notice that <Play> has been omitted since it is the root of xml, and that <Trick> is also omitted from the Where method.

link|improve this answer
feedback
up vote 0 down vote accepted

I have try the various solutions, none of them works! One only removes the 1st found node, the other one crashes at runtime...

Finally I came up with a simpler Visual Basic Linq - NO LAMBDA - solution, like this:

Dim xTricks = From x In myXmlElement.<Play>.<Trick> Where x.Value = "" Select x
xTricks.Remove()

Which I tested and which works fine...

Strange how complex solutions makes c# programers feel happyer!!!

link|improve this answer
feedback

You should use the == operator or .Equals() method.

myXmlElement.<Play>.<Trick>.Where(Function(m) m.<Trick>.Value == "").Remove()

or

myXmlElement.<Play>.<Trick>.Where(Function(m) m.<Trick>.Value.Equals(string.Empty)).Remove()
link|improve this answer
feedback

To see if the element is empty, you can inspect its child nodes through the Nodes() method to see if it has anything. Filter by the empty nodes then remove them.

Note that in general, merely checking if the value is empty is wrong since there may be empty child elements.

''# assuming we have an XDocument with the above XML
myXmlDoc.<Play>.<Trick>.Where(Function(e) Not e.Nodes.Any).Remove()

Seeing as you wanted to do this using query notation (which by the way makes no difference):

Dim query = From e In myXmlDoc.<Play>.<Trick>
            Where Not e.Nodes.Any
            Select e
query.Remove()
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.