Contact: aviboots(AT)netvision.net.il
41,604 questions
54,252 answers
573 users
using System; public class Program { public static void Main(string[] args) { string str = "c# c java c++ python go"; int pos = str.LastIndexOf(' '); // strrpos() Console.WriteLine(pos); } } /* run: 20 */