获取给定字符串的子字符串
string helloWorld = "Hello World!";
string world = helloWorld.Substring(6); //world = "World!"
string hello = helloWorld.Substring(0,5); // hello = "Hello"
Substring
从给定索引或两个索引(包括两个索引)之间返回字符串。
string helloWorld = "Hello World!";
string world = helloWorld.Substring(6); //world = "World!"
string hello = helloWorld.Substring(0,5); // hello = "Hello"
Substring
从给定索引或两个索引(包括两个索引)之间返回字符串。