Contact: aviboots(AT)netvision.net.il
39,923 questions
51,856 answers
573 users
using System; class Program { static void Main() { string s = "c++ c php c# java golang c# nodejs"; int pos = s.LastIndexOf("c#"); if (pos != -1) Console.Write("{0} {1}", pos, s[pos]); else Console.Write("not found"); } } /* run: 25 c */