import { type RepeatAtLeastTimes } from "https://deno.land/x/rimbu@0.13.5/typical/str.ts";
Returns a tuple containing the matched part and the rest of the given string if the string start repeats the given Sub at least N times.
Examples
Example 1
Example 1
RepeatAtLeastTimes<'aabc', 'a', 0> => ['', 'aabc']
RepeatAtLeastTimes<'aabc', 'a', 1> => ['a', 'abc']
RepeatAtLeastTimes<'aabc', 'a', 3> => false
RepeatAtLeastTimes<'aabc', 'a' | 'b', 3> => ['aab', 'c']