replaceFirstMapped 抽象方法

String replaceFirstMapped(
  1. Pattern from,
  2. String replace(
    1. Match match
    ),
  3. [int startIndex = 0]
)

替换此字符串中首次出现的 from

const string = 'Dart is fun';
print(string.replaceFirstMapped(
    'fun', (m) => 'open source')); // Dart is open source

print(string.replaceFirstMapped(
    RegExp(r'\w(\w*)'), (m) => '<${m[0]}-${m[1]}>')); // <Dart-art> is fun

返回一个新的字符串,该字符串在此字符串的基础上,从 startIndex 开始将 from 的首次匹配替换为调用 replace 方法的匹配对象的结果。

startIndex 必须是非负数,且不超过 length

实现

String replaceFirstMapped(Pattern from, String replace(Match match),
    [int startIndex = 0]);