string mystring = "Hellopeople"; string lastFour = mystring.Substring(mystring.Length - 4 , 4); Console.WriteLine(lastFour);