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"));
      Console.WriteLine("Total number of elements = "+stringCol.Count);
      stringCol.Clear();
      Console.WriteLine("\nWe have removed all the elements now..");
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
   }
}

出力

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

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

We have removed all the elements now..
Total number of elements now = 0

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Count of elements = "+stringCol.Count);
      stringCol.Clear();
      Console.WriteLine("\nRemoved all the elements now...");
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
   }
}

出力

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

Array elements...
A
B
C
D
E
F
G
H
I
J
Count of elements = 10

Removed all the elements now...
Total number of elements now = 0

  1. JavaのArrayListからすべての要素を削除します

    JavaでArrayListからすべての要素を削除するには、最初にいくつかの要素を含むArrayListを作成します- ArrayList<Integer> arrlist = new ArrayList<Integer>(5); arrlist.add(25); arrlist.add(50); arrlist.add(75); arrlist.add(100); arrlist.add(150); arrlist.add(200); arrlist.add(250); それでは、すべての要素を削除しましょう- arrlist.clear(); 例 完全なコードを

  2. Python –文字列のリストからのすべての部分文字列

    文字列のリストから部分文字列のすべての出現を取得する必要がある場合は、単純なリスト内包表記と「startswith」メソッドが使用されます。 例 以下は同じのデモンストレーションです- my_string = "Is python fun to learn?" print("The list is :") print(my_string) substring = "pyt" print("The substring is :") print(substring) my_result = [i for i i