কম্পিউটার

একটি অ্যারেতে C# এ নির্দিষ্ট শর্তের সাথে মেলে এমন উপাদান রয়েছে কিনা তা পরীক্ষা করুন


একটি অ্যারেতে নির্দিষ্ট শর্তের সাথে মেলে এমন উপাদান রয়েছে কিনা তা পরীক্ষা করতে, আমরা C# −

-এ StartsWith() পদ্ধতি ব্যবহার করতে পারি।

উদাহরণ

using System;
public class Demo {
   public static void Main(){
      string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" };
      Console.WriteLine("Products list...");
      foreach(string s in products){
         Console.WriteLine(s);
      }
      Console.WriteLine("\nOne or more products begin with the letter 'C'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("C")));
      Console.WriteLine("One or more planets begin with 'D'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("D")));
      Console.WriteLine("One or more products begin with the letter 'T'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("T")));
      Console.WriteLine("One or more planets begin with 'E'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("E")));
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Products list...
Electronics
Accessories
Clothing
Toys
Clothing
Furniture
One or more products begin with the letter 'C'? = True
One or more planets begin with 'D'? = False
One or more products begin with the letter 'T'? = True
One or more planets begin with 'E'? = True

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

using System;
public class Demo {
   public static void Main(){
      string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" };
      Console.WriteLine("Products list...");
      foreach(string s in products){
         Console.WriteLine(s);
      }
      Console.WriteLine("Is the products Accessories in the array? = {0}",
      Array.Exists(products, ele => ele == "Accessories"));
      Console.WriteLine("Is the products Stationery in the array? = {0}",
      Array.Exists(products, ele => ele == "Stationery"));
      Console.WriteLine("\nOne or more products begin with the letter 'C'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("C")));
      Console.WriteLine("One or more planets begin with 'D'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("D")));
      Console.WriteLine("One or more products begin with the letter 'T'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("T")));
      Console.WriteLine("One or more planets begin with 'E'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("E")));
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Products list...
Electronics
Accessories
Clothing
Toys
Clothing
Furniture
Is the products Accessories in the array? = True
Is the products Stationery in the array? = False
One or more products begin with the letter 'C'? = True
One or more planets begin with 'D'? = False
One or more products begin with the letter 'T'? = True
One or more planets begin with 'E'? = True

  1. C# প্রোগ্রাম একটি অ্যারের শেষ থেকে নির্দিষ্ট সংখ্যক উপাদান ফেরত দেয়

  2. C# এ জ্যাগড অ্যারের উপাদানের ধরন কী?

  3. একটি অ্যারে প্রদত্ত মান রয়েছে কিনা তা পরীক্ষা করার জন্য জাভা প্রোগ্রাম

  4. একটি অ্যারে পাইথনে একটি প্রদত্ত পরিসরের সমস্ত উপাদান রয়েছে কিনা তা পরীক্ষা করুন