replaceFirst 抽象方法

String replaceFirst(
  1. Pattern from,
  2. String to, [
  3. int startIndex = 0
])

创建一个新的字符串,将 from 的第一个出现替换为 to

startIndex 开始在此字符串中查找 from 的第一个匹配项,并创建一个新的字符串,其中该匹配项被 to 字符串替换。

示例

'0.0001'.replaceFirst(RegExp(r'0'), ''); // '.0001'
'0.0001'.replaceFirst(RegExp(r'0'), '7', 1); // '0.7001'

实现

String replaceFirst(Pattern from, String to, [int startIndex = 0]);