RepeatingCharacterParserExtension extension
Methods
-
plusString(
{String? message}) → Parser< String> -
Available on Parser<
Returns a parser that accepts the receiver one or more times. The resulting parser returns the consumed input string.String> , provided by the RepeatingCharacterParserExtension extension -
repeatString(
int min, int max, {String? message}) → Parser< String> -
Available on Parser<
Returns a parser that accepts the receiver betweenString> , provided by the RepeatingCharacterParserExtension extensionmin
andmax
times. The resulting parser returns the consumed input string. -
starString(
{String? message}) → Parser< String> -
Available on Parser<
Returns a parser that accepts the receiver zero or more times. The resulting parser returns the consumed input string.String> , provided by the RepeatingCharacterParserExtension extension -
timesString(
int count, {String? message}) → Parser< String> -
Available on Parser<
Returns a parser that accepts the receiver exactlyString> , provided by the RepeatingCharacterParserExtension extensioncount
times. The resulting parser returns the consumed input string.