检查字符串数组是否包含值,如果包含,则获取其位置

本文关键字:获取 位置 包含 如果 数组 是否 包含值 检查 字符串 | 更新日期: 2023-09-27 18:12:13

我有这个字符串数组:

string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";

我想确定stringArray是否包含value。如果是,我想找到它在数组中的位置。

我不想使用循环。有人能告诉我该怎么做吗?

检查字符串数组是否包含值,如果包含,则获取其位置

您可以使用数组。IndexOf方法:

string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
int pos = Array.IndexOf(stringArray, value);
if (pos > -1)
{
    // the array contains the string and the pos variable
    // will have its position in the array
}
var index = Array.FindIndex(stringArray, x => x == value)

我们也可以使用Exists:

string[] array = { "cat", "dog", "perl" };
// Use Array.Exists in different ways.
bool a = Array.Exists(array, element => element == "perl");
bool c = Array.Exists(array, element => element.StartsWith("d"));
bool d = Array.Exists(array, element => element.StartsWith("x"));

我没注意到你也需要这个职位。您不能对数组类型的值直接使用IndexOf,因为它是显式实现的。但是,您可以使用:

IList<string> arrayAsList = (IList<string>) stringArray;
int index = arrayAsList.IndexOf(value);
if (index != -1)
{
    ...
}

(这类似于根据Darin的答案调用Array.IndexOf -只是一种替代方法。我不清楚为什么IList<T>.IndexOf 在数组中显式实现,但没关系…)

您可以使用Array.IndexOf() -注意,如果没有找到元素,它将返回-1,并且您必须处理这种情况。

int index = Array.IndexOf(stringArray, value);

你可以这样尝试…你可以使用Array.IndexOf(),如果你也想知道位置

       string [] arr = {"One","Two","Three"};
       var target = "One";
       var results = Array.FindAll(arr, s => s.Equals(target));

在我看来,检查数组是否包含给定值的最佳方法是使用System.Collections.Generic.IList<T>.Contains(T item)方法,如下所示:

((IList<string>)stringArray).Contains(value)

完整的代码示例:

string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
if (((IList<string>)stringArray).Contains(value)) Console.WriteLine("The array contains "+value);
else Console.WriteLine("The given string was not found in array.");

T[]数组私下实现了List<T>的一些方法,如Count和Contains。因为它是显式(私有)实现,所以如果不先转换数组,就不能使用这些方法。这不仅适用于字符串——你可以使用这个技巧来检查任何类型的数组是否包含任何元素,只要元素的类实现了IComparable。

请记住,并非所有IList<T>方法都以这种方式工作。尝试在数组上使用IList<T>的Add方法将失败。

使用系统。Linq

stringArray.Contains(value3);

你可以试试这个,它查找包含这个元素的索引,并将索引号设置为int,然后检查int是否大于-1,所以如果它是0或更大,那么它意味着它找到了这样一个索引-因为数组是从0开始的。

string[] Selection = {"First", "Second", "Third", "Fourth"};
string Valid = "Third";    // You can change this to a Console.ReadLine() to 
    //use user input 
int temp = Array.IndexOf(Selection, Valid); // it gets the index of 'Valid', 
                // in our case it's "Third"
            if (temp > -1)
                Console.WriteLine("Valid selection");
            }
            else
            {
                Console.WriteLine("Not a valid selection");
            }
string x ="Hi ,World";
string y = x;
char[] whitespace = new char[]{ ' ','t'};          
string[] fooArray = y.Split(whitespace);  // now you have an array of 3 strings
y = String.Join(" ", fooArray);
string[] target = { "Hi", "World", "VW_Slep" };
for (int i = 0; i < target.Length; i++)
{
    string v = target[i];
    string results = Array.Find(fooArray, element => element.StartsWith(v, StringComparison.Ordinal));
    //
    if (results != null)
    { MessageBox.Show(results); }
}

我创建了一个重用的扩展方法。

   public static bool InArray(this string str, string[] values)
    {
        if (Array.IndexOf(values, str) > -1)
            return true;
        return false;
    }

如何命名:

string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
if(value.InArray(stringArray))
{
  //do something
}
string[] strArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
if(Array.contains(strArray , value))
{
    // Do something if the value is available in Array.
}

最简单的方法如下:

string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
if(stringArray.Contains(value))
{
    // Do something if the value is available in Array.
}