Contact: aviboots(AT)netvision.net.il
39,859 questions
51,780 answers
573 users
using System; class Program { static void Main() { string s = "c c++, java, python, c#"; string comma = ","; int index = s.IndexOf(comma); s = (index < 0) ? s : s.Remove(index, comma.Length); Console.Write(s); } } /* run: c c++ java, python, c# */