Getting Substrings of a given string

suggest change
string helloWorld = "Hello World!";
string world = helloWorld.Substring(6); //world = "World!"
string hello = helloWorld.Substring(0,5); // hello = "Hello"

Substring returns the string up from a given index, or between two indexes (both inclusive).

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents