DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Sub String With Index Of
Following code will explains use of substring with index of function together.
string sentence = "This is dot net zone >> snippet";
// index of z.
int idx = sentence.IndexOf('z');
string remaining = sentence.Substring(idx);
Console.WriteLine(remaining);
output : zone >> snippet





