Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this:

List<string> s = new List<string>{"", "a", "", "b", "", "c"};

I want to remove all the empty elements ("") from it quickly (probably through LINQ) without using a foreach statement because that makes the code look ugly.

share|improve this question

3 Answers

up vote 19 down vote accepted

You can use List.RemoveAll:

C#

s.RemoveAll(str => String.IsNullOrEmpty(str));

VB.NET

s.RemoveAll(Function(str) String.IsNullOrEmpty(str))
share|improve this answer
4  
I would simply write s.RemoveAll(String.IsNullOrEmpty);, you don't need a lambda in this case. – Paolo Moretti Jan 14 at 10:26
@PaoloMoretti: +1 Good point. But at least in VB.NET it isn't really shorter: s.RemoveAll(AddressOf String.IsNullOrEmpty) and the lamdba shows that it's possible to modify it easily. Imho it's more readable with the lambda. – Tim Schmelter Jan 14 at 11:08

Check out with List.RemoveAll with String.IsNullOrEmpty() method;

Indicates whether the specified string is null or an Empty string.

s.RemoveAll(str => string.IsNullOrEmpty(str));

Here is a DEMO.

share|improve this answer
1  
+1 for lower case "s" for string :) – nawfal Jan 14 at 0:01
Nope. OP used both :) just personal preference.. :) – nawfal Jan 14 at 0:03
s = s.Where(val => !string.IsNullOrEmpty(val)).ToList();
share|improve this answer
3  
This is not correct should be s = s.Where(val => !string.IsNullOrEmpty(val)).ToList(); his Initial type is List<string> so you need to make sure it stays a List<string> – DJ KRAZE Jan 13 at 22:49
this way probably works IList. IList does not have RemoveAll. – liang Apr 17 at 9:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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