YuriyGuts.RegexBuilder.RegexQuantifier.Exactly C# (CSharp) Method

Exactly() public static method

The "{n}" or "{n}?" quantifier. Exact occurrence count.
public static Exactly ( int occurrenceCount ) : RegexQuantifier
occurrenceCount int
return RegexQuantifier
        public static RegexQuantifier Exactly(int occurrenceCount)
        {
            return new RegexQuantifier(occurrenceCount, occurrenceCount, false);
        }

Same methods

RegexQuantifier::Exactly ( int occurrenceCount, bool isLazy ) : RegexQuantifier