當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart RegExp.firstMatch用法及代碼示例


dart:core 庫中RegExp.firstMatch 方法的用法介紹如下。

用法:

RegExpMatch? firstMatch(
   String input   
)

在字符串 input 中查找正則表達式的第一個匹配項。

如果沒有匹配項,則返回 null

final string = '[00:13.37] This is a chat message.';
final regExp = RegExp(r'c\w*');
final match = regExp.firstMatch(string)!;
print(match[0]); // chat

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 firstMatch method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。