সমস্ত স্বরবর্ণ পরীক্ষা করতে, প্রথমে −
চেক করার শর্তটি সেট করুনstring res = str.Where(chk =< "aeiouAEIOU".Contains(chk)).Distinct();
উপরে, আমরা স্ট্রিং-
ব্যবহার করেছিstring str = "the quick brown fox jumps over the lazy dog";
এখন, Any() পদ্ধতি ব্যবহার করে স্ট্রিংটিতে কোনো স্বর আছে কিনা তা পরীক্ষা করে দেখা হয় -
if(!res.Any()) Console.WriteLine("No vowels!");
স্বরবর্ণগুলি পেতে স্ট্রিং দিয়ে লুপ করুন −
উদাহরণ
using System; using System.Linq; public class Program { public static void Main() { string str = "the quick brown fox jumps over the lazy dog"; var res = str.Where(chk =< "aeiouAEIOU".Contains(chk)).Distinct(); if(!res.Any()) Console.WriteLine("No vowels!"); foreach(var vowel in res) Console.WriteLine("Your phrase contains vowel = {0}", vowel); } }
আউটপুট
Your phrase contains vowel = e Your phrase contains vowel = u Your phrase contains vowel = i Your phrase contains vowel = o Your phrase contains vowel = a