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 String.replaceFirst用法及代码示例
- Dart String.replaceAll用法及代码示例
- Dart String.replaceRange用法及代码示例
- Dart String.replaceAllMapped用法及代码示例
- Dart String.fromCharCodes用法及代码示例
- Dart String.trim用法及代码示例
- Dart String.lastIndexOf用法及代码示例
- Dart String.toLowerCase用法及代码示例
- Dart String.substring用法及代码示例
- Dart String.length用法及代码示例
- Dart String.padRight用法及代码示例
- Dart String.fromEnvironment用法及代码示例
- Dart String.trimLeft用法及代码示例
- Dart String.compareTo用法及代码示例
- Dart String.trimRight用法及代码示例
- Dart String.contains用法及代码示例
- Dart String.indexOf用法及代码示例
- Dart String.split用法及代码示例
- Dart String.startsWith用法及代码示例
- Dart String.splitMapJoin用法及代码示例
- Dart String.operator_get用法及代码示例
- Dart String.operator_multiply用法及代码示例
- Dart String.endsWith用法及代码示例
- Dart String.operator_plus用法及代码示例
- Dart String.operator_equals用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 replaceFirstMapped method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。