Match a token at least the specified amount of times, trying to match as short as possible.
atLeastLazily is a short form of atLeast.lazily. See the documentation of atLeast for more details.
atLeastLazily
atLeast.lazily
atLeastLazily(3)`foo`atLeast.lazily(3)`foo` Copy
atLeastLazily(3)`foo`atLeast.lazily(3)`foo`
RegExp equivalent:
/(?:foo){3,}?/ Copy
/(?:foo){3,}?/
Generated using TypeDoc
Match a token at least the specified amount of times, trying to match as short as possible.
atLeastLazily
is a short form ofatLeast.lazily
. See the documentation of atLeast for more details.