C#
 Computer >> コンピューター >  >> プログラミング >> C#

指定された文字列がC#のStringCollectionにあるかどうかを確認します


指定された文字列がStringCollectionにあるかどうかを確認するには、コードは次のとおりです-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "300", "400", "500" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Does the specified string is in the StringCollection? = "+stringCol.Contains("800"));
   }
}

出力

これにより、次の出力が生成されます-

Array elements...
100
200
300
400
500
Does the specified string is in the StringCollection? = False

別の例を見てみましょう-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "John", "Tim", "Kevin", "Bradman", "Katie", "Tom", "Nathan" };
      Console.WriteLine("String array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Does the specified string is in the StringCollection? = "+stringCol.Contains("Katie"));
   }
}

出力

これにより、次の出力が生成されます-

String array elements...
John
Tim
Kevin
Bradman
Katie
Tom
Nathan
Does the specified string is in the StringCollection? = True

  1. 文字列がパングラムかどうかを確認するPythonプログラム

    このチュートリアルでは、文字列がパングラムであるかどうかをチェックするプログラムを作成します。パングラムについて話してチュートリアルを始めましょう。 パングラムとは何ですか? 文字列に小さいか大文字かを問わずすべてのアルファベットが含まれている場合、その文字列はパングラムと呼ばれます。 私たちはさまざまな方法で目標を達成することができます。このチュートリアルでは、そのうちの2つを見てみましょう。 1。一般 次の手順を使用してプログラムを作成してみてください。 アルゴリズム 1. Import the string module. 2. Initialize a variable wit

  2. 指定された文字列がパングラムであるかどうかを確認するPythonプログラム

    この記事では、特定の問題ステートメントを解決するための解決策とアプローチについて学習します。 問題の説明 文字列入力が与えられた場合、その文字列がパングラムであるかどうかを確認するPythonプログラムを生成する必要があります。 パングラムは、英語のアルファベットコレクションのすべての文字を含む文/一連の単語です。 では、問題を解決する方法を見てみましょう 入力文字列に存在する各文字が、手動で宣言するアルファベットセットに属しているかどうかをチェックするループを使用します。 上記のアプローチの実装は、-によって与えられます。 例 import string def ispangram