using System; namespace Enum { class Program { static void Main(string[] args) { string s = "asdfghj;zxcvb"; var index = s.IndexOf(';'); Console.WriteLine(s.Substring(index -4, 4)); } } }