迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 中检查数组是否包含给定值

作者:迹忆客 最近更新:2024/01/16 浏览次数:

本教程将介绍在 C# 中检查数组内部元素的方法。


使用 C# 中的 Array.IndexOf() 函数获取数组中元素的索引

C# 中的 Array.IndexOf(array, element) 函数获取数组 array 中元素 element 的索引。如果数组中不存在该元素,则返回 -1

以下代码示例向我们展示了如何使用 C# 中的 Array.Indexof() 函数获取数组中元素的索引。

using System;

namespace check_element_in_array {
  class Program {
    static void Main(string[] args) {
      string[] stringArray = { "value1", "value2", "value3", "value4" };
      string value = "value3";
      int index = Array.IndexOf(stringArray, value);
      if (index > -1) {
        Console.WriteLine("{0} found in the array at index {1}", value, index);
      } else {
        Console.WriteLine("Value not found");
      }
    }
  }
}

输出:

value3 found in the array at index 2

我们使用 C# 中的 Array.IndexOf() 函数在数组 stringArray 中显示元素 value3 的索引。上面的代码在找到值的情况下显示元素的索引,在数组中找不到值的情况下显示 value not found


使用 C# 中的 Array.FindIndex() 函数获取数组中元素的索引

如果元素存在于数组中,C# 中的 Array.FindIndex(array, pattern) 函数获取与数组 array 中的模式 pattern 相匹配的元素索引。如果数组中不存在该元素,则返回 -1。我们可以使用 lambda 表达式在 Array.FindIndex() 函数中指定 pattern 参数。

以下代码示例向我们展示了如何在 C# 中使用 Array.FindIndex() 函数和 lambda 表达式来获取数组中元素的索引。

using System;

namespace check_element_in_array {
  class Program {
    static void Main(string[] args) {
      string[] stringArray = { "value1", "value2", "value3", "value4" };
      string value = "value3";
      var index = Array.FindIndex(stringArray, x => x == value);
      if (index > -1) {
        Console.WriteLine("{0} found in the array at index {1}", value, index);
      } else {
        Console.WriteLine("Value not found");
      }
    }
  }
}

输出:

value3 found in the array at index 2

我们使用 C# 中的 Array.IndexOf() 函数在数组 stringArray 中显示元素 value3 的索引。上面的代码在找到值的情况下显示元素的索引,在数组中找不到值的情况下显示 value not found


使用 C# 中的 Array.Exists() 检查数组中的元素

如果只需要检查数组中是否存在某个元素,而又不关心该元素所在的数组的索引,则可以使用 Array.Exists() 函数,位于 C# 中。Array.Exists() 函数返回一个布尔值,如果该元素存在于数组中,则为 true;如果该元素不存在于数组中,则为 false

以下代码示例向我们展示了如何使用 C# 中的 Array.Exists() 函数检查数组中的元素。

using System;

namespace check_element_in_array {
  class Program {
    static void Main(string[] args) {
      string[] stringArray = { "value1", "value2", "value3", "value4" };
      string value = "value3";
      var check = Array.Exists(stringArray, x => x == value);
      if (check == true) {
        Console.WriteLine("{0} found in the array", value);
      } else {
        Console.WriteLine("Value not found");
      }
    }
  }
}

输出:

value3 found in the array

在上面的代码中,我们使用 C# 中的 Array.Exists() 函数检查了 stringArray 数组中是否存在值 value3

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

C# 中的 float、Double 和 Decimal

发布时间:2024/01/18 浏览次数:128 分类:编程语言

C# 中的浮点,双精度和十进制数据类型之间的差异如下所述。C# 中的浮点数数据类型 浮点数数据类型在 C# 中存储浮点值。

在 C# 中获取数组的大小

发布时间:2024/01/18 浏览次数:178 分类:编程语言

有两种主要方法可用于获取 C# 中的数组大小,Array.Length 属性和 Array.Rank 属性。使用 C# 中的 Array.Length 属性获取数组的大小

C# 中将数组转换为列表

发布时间:2024/01/18 浏览次数:141 分类:编程语言

有两种主要方法可用于将数组转换为 C# 中的列表,Linq 中的 Array.ToList()函数和 List.AddRange()函数。

在 C# 中随机排列数组

发布时间:2024/01/18 浏览次数:127 分类:编程语言

可使用两种主要方法来随机播放 C# 中的数组:Random 类和 RNGCryptoServiceProvider 类。在 C# 中使用 Random 类对数组进行混洗 Random 类在 C# 中生成随机数。

在 C# 中声明一个常量数组

发布时间:2024/01/18 浏览次数:118 分类:编程语言

我们可以在 C# 中使用 readonly 关键字声明常量数组。在 C# 中使用 readonly 关键字声明一个常量数组

C# 中的方法组

发布时间:2024/01/16 浏览次数:170 分类:编程语言

本文向我们介绍了 C# 中的方法组。C# 中的方法组 我们有时会遇到一个函数可能有多个实现的情况。

C# 将多个参数传递给 get 方法

发布时间:2024/01/16 浏览次数:175 分类:编程语言

本文的方法指南展示了在 C# 中将多个参数传递给 get 方法的不同方法。它介绍了控制器动作,属性路由和 [FromQuery]之类的方法。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便