C# Class Pegasus.Expressions.RepetitionExpression

Represents the repetition of an expression.
Inheritance: Expression
Exibir arquivo Open project: otac0n/Pegasus Class Usage Examples

Public Methods

Method Description
RepetitionExpression ( Expression expression, Quantifier quantifier ) : System

Initializes a new instance of the RepetitionExpression class.

Method Details

RepetitionExpression() public method

Initializes a new instance of the RepetitionExpression class.
public RepetitionExpression ( Expression expression, Quantifier quantifier ) : System
expression Expression The expression to be repeatedly matched.
quantifier Quantifier The quantifier that specifies how many times to match and the delimiter of the matches.
return System