Falcon Yönetici 25 Mart 2025 #1 Kod: using System; using System.Text.RegularExpressions; class Program { static void Main() { string text = "Merhaba dünya!"; string pattern = "dünya"; bool match = Regex.IsMatch(text, pattern); Console.WriteLine(match); // Çıktı: True } } Son düzenleme: 25 Mart 2025
Kod: using System; using System.Text.RegularExpressions; class Program { static void Main() { string text = "Merhaba dünya!"; string pattern = "dünya"; bool match = Regex.IsMatch(text, pattern); Console.WriteLine(match); // Çıktı: True } }