Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
using System; class Program { static void Main() { string str = "java c# c c++ python"; Console.WriteLine(str.IndexOf('c')); } } /* run: 5 */
using System; class Program { static void Main() { string str = "java c# c c++ python"; Console.WriteLine(str.IndexOf("c++")); } } /* run: 10 */