using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
try
{
string s = "Star Wars is GREAT movie. Star Trek is also a Great movie";
// ignor the case
int i = s.LastIndexOf("great", StringComparison.OrdinalIgnoreCase);
if (i != -1)
{
Console.WriteLine(i);
Console.WriteLine(s.Substring(i));
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
/*
run:
46
Great movie
*/