How to remove first 10 characters from a string?

.net, asp.net, c#, string, substring

Solution

str = "hello world!";
str.Substring(10, str.Length-10)

you will need to perform the length checks else this would throw an error

Problem

How to ignore the first 10 characters of a string? Input: ``` str = "hello world!"; ``` Output: ``` d! ```

Original source

Related problems