Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
using System; class Program { static void Main() { string str = "c# c java python php"; var substring = str.Substring(str.IndexOf('p') + 1); Console.WriteLine(substring); } } /* run: ython php */