Dart 编程 - 子串方法


返回此字符串从 startIndex(包含)延伸到 endIndex(不包含)的子字符串。

句法

substring(int startIndex, [ int endIndex ])

参数

  • startIndex - 开始提取的索引(包括)。

  • endIndex - 停止提取的索引(不包括)。

注意- 索引是从零开始的,即第一个字符的索引为 0,依此类推。

返回类型

返回一个字符串。

例子

void main() { 
   String str1 = "Hello World"; 
   print("New String: ${str1.substring(6)}"); 
   
   // from index 6 to the last index 
   print("New String: ${str1.substring(2,6)}"); 
   
   // from index 2 to the 6th index 
} 

它将产生以下输出-。

New String: World 
New String: llo 
dart_programming_string.htm