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

AppendMaybeCount() public method

Appends a quantifier that matches previous element at most specified number of times.
is less than zero.
public AppendMaybeCount ( int maxCount ) : void
maxCount int A maximum number of times the pattern can be matched.
return void
        public void AppendMaybeCount(int maxCount)
        {
            AppendMaybeCount(maxCount, false);
        }

Same methods

PatternBuilder::AppendMaybeCount ( int maxCount, bool lazy ) : void