在C#中,substring方法用于從一個字符串中提取子字符串。其高級用法包括以下幾種:
string str = "Hello World";
string sub = str.Substring(6, 5); // 輸出 "World"
string str = "Hello World";
string sub = str.Substring(6); // 輸出 "World"
string str = "Hello World";
int startIndex = str.IndexOf("World");
string sub = str.Substring(startIndex); // 輸出 "World"
string str = "Hello World Hello";
int startIndex = str.LastIndexOf("Hello");
string sub = str.Substring(startIndex); // 輸出 "Hello"
總的來說,Substring方法在C#中提供了靈活的子字符串提取功能,可以根據具體需求選擇合適的用法進行操作。