views:

189

answers:

3

What would be the right way to sort a list of strings where I want items starting with an underscore '_', to be at the bottom of the list, otherwise everything is alphabetical.

Right now I'm doing something like this,

autoList.OrderBy(a => a.StartsWith("_") ? "ZZZZZZ"+a : a )
+1  A: 

I think you need to use OrderBy(Func<>, IComparer<>) and specify your own Comparer which will implement your custom logic .

abatishchev
+2  A: 

Use the overload of OrderBy that takes an IComparer, the first Func argument will feed the comparer, and from there you need to compare the strings. First deal with the case of one or both starts with _, and then from there you will probably need to strip the _ and just use the standard string.Compare to sort them beyond the first _

Matt Greer
However, in all honesty, although technically your approach is a hack and can fail, it's a lot simpler and easier to understand your intent.
Matt Greer
+6  A: 

If you want custom ordering, but don't want to supply a comparer, you can have it - sql style:

autoList
.OrderBy(a => a.StartsWith("_") ? 2 : 1 )
.ThenBy(a => a);
David B
I like this solution better. I always forget about ThenBy.
Matt Greer
Thanks. That's perfect.
Bala R
+1 Really like that solution. Very nice.
Jason Evans