Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendCount C# (CSharp) Method

AppendCount() public method

Appends a quantifier that matches previous element specific number of times.
is less than zero.
public AppendCount ( int exactCount ) : void
exactCount int A number of times the pattern must be matched.
return void
        public void AppendCount(int exactCount)
        {
            AppendCount(exactCount, false);
        }

Same methods

PatternBuilder::AppendCount ( int exactCount, bool lazy ) : void
PatternBuilder::AppendCount ( int minCount, int maxCount ) : void
PatternBuilder::AppendCount ( int minCount, int maxCount, bool lazy ) : void