using System; public class Test { public static void Main() { string temp = "01_Barnsley"; string textIWant = temp.Substring(3); Console.WriteLine(textIWant); } }