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