回答:
Array.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
}
Array.IndexOf
総額についてのケア?します"text1" == "TEXT1"
か?
Array.IndexOf
−1
インデックスが0境界の場合にのみ返されます。このケースは壊れるので注意してください!var a = Array.CreateInstance(typeof(int),new int[] { 2 }, new int[] { 1 }); a.SetValue(1, 1); Console.WriteLine(Array.IndexOf(a, 26)); // 0
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"));
char
変換できないメッセージが表示されましたSystem.Predicate<char>
編集:あなたもそのポジションが必要であることに気づきませんでした。IndexOf
明示的に実装されているため、配列型の値を直接使用することはできません。ただし、次のものを使用できます。
IList<string> arrayAsList = (IList<string>) stringArray;
int index = arrayAsList.IndexOf(value);
if (index != -1)
{
...
}
(これはArray.IndexOf
Darinの回答による呼び出しに似ています-単なる代替アプローチです。なぜ配列に明示的に実装されているのかはわかりませんが、気にしないでください...)IList<T>.IndexOf
if (months.Contains(model.Month))
IMO配列に特定の値が含まれているかどうかを確認する最良の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メソッドを使用しようとすると失敗します。
これを試すことができ、この要素を含むインデックスを検索して、インデックス番号を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
}
position
OPが求めているのはどこですか?
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.
}
Contains
方法では、この情報はありません