使用 LINQ 返回与条件匹配的数组索引的简洁方法

发布于 2024-11-07 05:38:58 字数 289 浏览 0 评论 0原文

我想返回满足条件的数组中的所有索引。我想出了

myarray
   .Select((p,i) => 
       {              
          if (SomeCondition(p)) return i; 
          else return -1;
       })
   .Where(p => p != -1);

我知道我可以编写一个扩展方法或使用循环来完成它,但我想知道 LINQ 中是否内置了一些我不熟悉的东西。如果这很微不足道,请道歉

I want to return all of the indices from an array where a condition is met. I've come up with

myarray
   .Select((p,i) => 
       {              
          if (SomeCondition(p)) return i; 
          else return -1;
       })
   .Where(p => p != -1);

I know I can write an extension method or do it with a loop, but I was wondering if there was something built into LINQ that I'm unfamiliar with. Apologies if this is trivial

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

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

发布评论

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

评论(3

┊风居住的梦幻卍 2024-11-14 05:38:58

就我个人而言,我会这样做:

myarray
    .Select((p, i) => new { Item = p, Index = i })
    .Where(p => SomeCondition(p.Item))
    .Select(p => p.Index);

Personally, I'd go with this:

myarray
    .Select((p, i) => new { Item = p, Index = i })
    .Where(p => SomeCondition(p.Item))
    .Select(p => p.Index);
世态炎凉 2024-11-14 05:38:58

当我阅读问题的文本而不是示例时:

int[] data = { 1, 2, 5, 6, };

var results = Enumerable.Range(0, data.Length).Where(i => data[i] > 2);

// results = { 2, 3 } 

您真的需要那些 -1 吗?

When I read the text of the question and not the sample:

int[] data = { 1, 2, 5, 6, };

var results = Enumerable.Range(0, data.Length).Where(i => data[i] > 2);

// results = { 2, 3 } 

Do you really need those -1s ?

川水往事 2024-11-14 05:38:58

我可能会编写一个扩展方法,但如果我选择不这样做,我会这样做:

array
  .Select((item, index) => SomeCondition(item) ? index : -1)
  .Where(index => index != -1);

这正是您已经在做的事情,但不太冗长,因为它使用三元 if 运算符而不是 if/ else 块。

I would probably write an extension method, but if I chose not to, I would do this:

array
  .Select((item, index) => SomeCondition(item) ? index : -1)
  .Where(index => index != -1);

It's exactly what you are doing already, but less verbose since it uses the ternary if operator instead of the if/else block.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文