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


Dart Match.group用法及代码示例


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.dev大神的英文原创作品 group method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。