Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
using System; class Program { static void Main() { string s = "c# c c++ java c# python c#"; int pos = s.LastIndexOf(" ") + 1; s = s.Remove(pos).Insert(pos, "swift"); Console.WriteLine(s); } } /* run: c# c c++ java c# python swift */