RepeatingCharacterParserExtension extension

on

Methods

plusString([String? message]) Parser<String>
Returns a parser that accepts the receiver one or more times. The resulting parser returns the consumed input string.
repeatString(int min, [int? max, String? message]) Parser<String>
Returns a parser that accepts the receiver between min and max times. The resulting parser returns the consumed input string.
starString([String? message]) Parser<String>
Returns a parser that accepts the receiver zero or more times. The resulting parser returns the consumed input string.
timesString(int count, [String? message]) Parser<String>
Returns a parser that accepts the receiver exactly count times. The resulting parser returns the consumed input string.