remove first 7 character from a sting in c# code example
Example 1: remove first character in a string c#
// initial string is "/temp" it will be changed to "temp"
data.Remove(0,1);
data.TrimStart('/');
data.Substring(1);
Example 2: c# remove first three characters from string
str = "hello world!";
str.Substring(n, str.Length-n)