Dart 编程 - 子字符串方法



返回此字符串中从 startIndex(包括 startIndex)到 endIndex(不包括 endIndex)的子字符串。

语法

substring(int startIndex, [ int endIndex ])

参数

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

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

注意 − 索引从 0 开始,即第一个字符的索引为 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
广告