Click or drag to resize

PegBaseParserForRepeat(Int32, PegBaseParserMatcher) Method

Matches the specified expression an exact number of times.

Namespace: Altaxo.Main.PegParser
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public bool ForRepeat(
	int count,
	PegBaseParserMatcher toRepeat
)

Parameters

count  Int32
The required repetition count.
toRepeat  PegBaseParserMatcher
The matcher to repeat.

Return Value

Boolean
true if all repetitions succeed; otherwise, false.
See Also