当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Dart String.replaceFirstMapped用法及代码示例


dart:core 库中String.replaceFirstMapped 方法的用法介绍如下。

用法:

String replaceFirstMapped(
   Pattern from,    
   String replace(
   Match match   
),    
   [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

返回一个新字符串,该字符串除了 from 的第一个匹配项(从 startIndex 开始)被使用匹配对象调用 replace 的结果替换。

startIndex 必须为非负且不大于 length

相关用法


注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 replaceFirstMapped method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。