Contact: aviboots(AT)netvision.net.il
39,922 questions
51,855 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { string s = "c# c c++ java"; int i = s.LastIndexOfAny(new char[] { 'v', 'j' }); Console.WriteLine(i); } } } /* run: 11 */