[CODE] string sourStr="abcdefghijklmnopqrstuvwxyz";
string first="c";
string second="g";
string resuStr=string.Empty ;
resuStr=sourStr.Substring ((sourStr.IndexOf (first)),sourStr.IndexOf (second)-sourStr.IndexOf (first));
Console.WriteLine (resuStr);[/CODE]