List.OrderBy() 基于 Contains() 排序顺序?

发布于 2024-12-05 08:48:54 字数 152 浏览 2 评论 0原文

我定义了一个标准 List ,其中包含一个简短的项目列表。我想使用 foreach() 迭代列表,但希望将那些包含特定字符串值的项目“置于顶部”以便首先处理它们。这可以通过 OrderBy() 实现吗?更好的是,是否可以在一行中实现? 谢谢!

I have a standard List<Uri> defined that contains a short list of items. I'd like to iterate over the list using a foreach() but would like to 'bring to the top' those items that contain a specific string value in order to process them first. Is this possible with the OrderBy() and, better yet, is it possible in a single line?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

桃气十足 2024-12-12 08:48:54

你可以这样做:

foreach(var uri in uriList.OrderByDescending(uri => uri.ToString().Contains("foo"))
{
    // Use uri

You can do that:

foreach(var uri in uriList.OrderByDescending(uri => uri.ToString().Contains("foo"))
{
    // Use uri
就像说晚安 2024-12-12 08:48:54

是的。您可以使用 OrderByDescending() 使用返回布尔值的订单 - 例如:

var results = items.OrderByDescending( x => x.Name=="Herbert").ToList();

在本例中,订单将为“Herbert”返回 true,而对于“Herbert”则返回 false > 对于所有其他值。所有true 值将在所有false 值之后排序 - 我们通过使用OrderByDescending() 反转顺序并得到期望的结果。

适应您的 Uri 列表和 Contains() ,它也返回一个布尔值,这意味着:

foreach(var uri in uriList.OrderByDescending(x => x.ToString().Contains(someString))
{
   //..
}

Yes. you can use OrderByDescending() using an order that returns a boolean - example:

var results = items.OrderByDescending( x => x.Name=="Herbert").ToList();

In this case the order would return true for "Herbert" and false for all other values. All true values will be ordered after all false values - we reverse the order by using OrderByDescending() and have the desired outcome.

Adapted to your Uri list and Contains() which also returns a boolean this would mean:

foreach(var uri in uriList.OrderByDescending(x => x.ToString().Contains(someString))
{
   //..
}
沧笙踏歌 2024-12-12 08:48:54

其他人使用 OrderByDescending,这将起作用,但您要求使用 OrderBy,所以这里:

yourList.OrderBy(u => u.AbsoluteUri.Contains("somevalue") ? string.Empty : u.AbsoluteUri);

The others used OrderByDescending, which will work, but you asked for using OrderBy, so here:

yourList.OrderBy(u => u.AbsoluteUri.Contains("somevalue") ? string.Empty : u.AbsoluteUri);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文