I have a List<string>, and some of these strings are numbers. I want to extract this subset into a List<int>.
I have done this in quite a verbose looking way - as below - but I get the feeling there must be a neater LINQ way to structure this. Any ideas?
List<string> myStrs = someListFromSomewhere;
List<int> myInts = new List<int>();
foreach (string myStr in myStrs)
{
int outInt;
if (int.TryParse(myStr, out outInt))
{
myInts.Add(outInt);
}
}
Obviously I don't need a solution to this - it's mainly for my LINQ education.
var myInts = myStrs.Where(s => int.TryParse(s, out outInt)).Select(s => int.Parse(s)), as long as you already had outInt defined. This callsTryParseand Parse on each string, though - so I wouldn't really suggest it – rejj Jan 18 '12 at 13:30