當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart String.replaceRange用法及代碼示例


dart:core 庫中String.replaceRange 方法的用法介紹如下。

用法:

String replaceRange(
   int start,    
   int? end,    
   String replacement   
)

replacement 替換從 startend 的子字符串。

創建一個等效於的新字符串:

this.substring(0, start) + replacement + this.substring(end)

例子:

const string = 'Dart is fun';
final result = string.replaceRange(8, null, 'open source');
print(result); // Dart is open source

startend 索引必須指定此字符串的有效範圍。那是 0 <= start <= end <= this.length 。如果 endnull ,則默認為 length

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 replaceRange method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。