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]);