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

AppendCount() public method

Appends a quantifier that matches previous element from minimal to maximum times.
is less than zero or is less than .
public AppendCount ( int minCount, int maxCount ) : void
minCount int A minimal number of times the pattern must be matched.
maxCount int A maximum number of times the pattern can be matched.
return void
        public void AppendCount(int minCount, int maxCount)
        {
            AppendCount(minCount, maxCount, false);
        }

Same methods

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