在C#中,Substring方法有兩種不同的參數形式。
- 使用一個參數:Substring(int startIndex)
- startIndex參數指定從哪個索引位置開始截取子字符串。返回從startIndex位置開始的子字符串,直到原始字符串的末尾。
- 使用兩個參數:Substring(int startIndex, int length)
- startIndex參數指定從哪個索引位置開始截取子字符串。
- length參數指定要截取的子字符串的長度。返回從startIndex位置開始,長度為length的子字符串。
注意:在C#中,索引位置從0開始計數。