Contact: aviboots(AT)netvision.net.il
41,314 questions
53,829 answers
573 users
using System; class Program { static void Main() { string s = "c# c++ java c python"; string[] words = s.Split(); foreach(String str in words) Console.WriteLine(str); } } /* run: c# c++ java c python */