Contact: aviboots(AT)netvision.net.il
42,199 questions
54,907 answers
573 users
using System; class Program { static void Main() { string str = "c c# \"java\" python c++"; int index_after_quotes = str.LastIndexOf("\"") + 1; Console.WriteLine(index_after_quotes); } } /* run: 11 */