matchAsPrefix 抽象方法
将此模式与字符串的开头进行匹配。
如果模式与从 start
开始的 string
的子字符串匹配,则返回一个匹配项;如果模式在该点不匹配,则返回 null
。
start
必须是非负数,且不大于 string.length
。
final string = 'Dash is a bird';
var regExp = RegExp(r'bird');
var match = regExp.matchAsPrefix(string, 10); // Match found.
regExp = RegExp(r'bird');
match = regExp.matchAsPrefix(string); // null
实现
Match? matchAsPrefix(String string, [int start = 0]);