C# ile kullanıcının girmiş olduğu cümleyi Split metodu kullanarak boşluklara göre kelimelerine ayıran ve bu kelimeleri alt alta yazdıran örneğe ait kodlar ve ekran çıktısı:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
static void Main(string[] args) { string cumle; string[] s; Console.Write("Cümleyi gir : "); cumle = Console.ReadLine(); s = cumle.Split(' '); Console.WriteLine("=================="); foreach(string kelime in s) { Console.WriteLine(kelime); } Console.ReadKey(); } |