matchAsPrefix 抽象方法
将此模式匹配到 string
的开头。
如果模式匹配到从 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]);