remove first 5 chars from string c# code example
Example: c# remove first 5 characters from string
str = str.Substring(n); //Where n is the number of characters you want to remove
str = str.Substring(n); //Where n is the number of characters you want to remove