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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。