Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
using System; class Program { static void Main() { string str = "C# C C++ Python NodeJS"; int size = str.Length; for (int i = 0; i < size; i++) { if (str[i] >= 'a' && str[i] <= 'z') Console.Write(str[i] + " "); } } } /* run: y t h o n o d e */