Class RangeMatch
Matches any single character within an inclusive range, e.g. 'a'..'z'.
public record RangeMatch : TokenizerContent, IEquatable<RuleContent>, IEquatable<TokenizerContent>, IEquatable<RangeMatch>
- Inheritance
-
RangeMatch
- Implements
- Inherited Members
- Extension Methods
Constructors
RangeMatch(char, char)
Matches any single character within an inclusive range, e.g. 'a'..'z'.
public RangeMatch(char From, char To)
Parameters
Properties
From
public char From { get; init; }
Property Value
To
public char To { get; init; }