Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
using System; using System.Linq; class Program { static void Main() { string s = "c# c++ java c python"; int N = 2; string[] words = s.Split(); string first3 = string.Join(" ", words.Take(N)); Console.Write(first3); } } /* run: c# c++ */
using System; class Program { static void Main() { string s = "c# c++ java c python"; string[] words = s.Split(); string first2 = words[0] + " " + words[1]; Console.Write(first2); } } /* run: c# c++ */