dart:core
庫中Match.group
方法的用法介紹如下。
用法:
String? group(
int group
)
與給定 group 匹配的字符串。
如果 group 為 0,則返回模式的整個匹配。
如果模式在此匹配中沒有為其分配值,則結果可能是null
。
final string = '[00:13.37] This is a chat message.';
final regExp = RegExp(r'^\[\s*(\d+):(\d+)\.(\d+)\]\s*(.*)$');
final match = regExp.firstMatch(string)!;
final message = jsonEncode(match[0]!); // '[00:13.37] This is a chat message.'
final hours = jsonEncode(match[1]!); // '00'
final minutes = jsonEncode(match[2]!); // '13'
final seconds = jsonEncode(match[3]!); // '37'
final text = jsonEncode(match[4]!); // 'This is a chat message.'
相關用法
- Dart Match.groups用法及代碼示例
- Dart Match用法及代碼示例
- Dart MapMixin.containsKey用法及代碼示例
- Dart Map.update用法及代碼示例
- Dart MapEntry.value用法及代碼示例
- Dart Map.addEntries用法及代碼示例
- Dart MapMixin.update用法及代碼示例
- Dart MapView.containsValue用法及代碼示例
- Dart Map.removeWhere用法及代碼示例
- Dart Map.from用法及代碼示例
- Dart Map.remove用法及代碼示例
- Dart Map.fromIterable用法及代碼示例
- Dart MapMixin.putIfAbsent用法及代碼示例
- Dart MapMixin.addAll用法及代碼示例
- Dart MapMixin.clear用法及代碼示例
- Dart MapMixin.addEntries用法及代碼示例
- Dart MapView.clear用法及代碼示例
- Dart Map.containsValue用法及代碼示例
- Dart Map.clear用法及代碼示例
- Dart MapMixin.updateAll用法及代碼示例
- Dart MapView.forEach用法及代碼示例
- Dart MapMixin.forEach用法及代碼示例
- Dart MapMixin.remove用法及代碼示例
- Dart MapEntry用法及代碼示例
- Dart MapMixin.removeWhere用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 group method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。