c# ignoring the 3 first caracteres from string code example
Example 1: c# remove first 5 characters from string
str = str.Substring(n); //Where n is the number of characters you want to remove
Example 2: c# remove first three characters from string
str = "hello world!";
str.Substring(n, str.Length-n)