Contact: aviboots(AT)netvision.net.il
39,890 questions
51,819 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 */