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

AppendCountFrom() public method

Appends a quantifier that matches previous element at least specified number of times.
is less than zero.
public AppendCountFrom ( int minCount ) : void
minCount int A minimal number of times the pattern must be matched.
return void
        public void AppendCountFrom(int minCount)
        {
            AppendCountFrom(minCount, false);
        }

Same methods

PatternBuilder::AppendCountFrom ( int minCount, bool lazy ) : void