I have a large string and its stored in a string variable str. And i want to get a substring from that in c#?
Suppose the string is : \" Retrieves a substring from thi
Here is example of getting substring from 14 character to end of string. You can modify it to fit your needs
string text = "Retrieves a substring from this instance. The substring starts at a specified character position.";
//get substring where 14 is start index
string substring = text.Substring(14);