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

AppendMaybeMany() public method

Appends a quantifier that matches previous element zero or more times.
public AppendMaybeMany ( bool lazy ) : void
lazy bool Indicates whether the quantifier will be greedy or lazy.
return void
        public void AppendMaybeMany(bool lazy)
        {
            AppendDirect('*');

            if (_fBuilder)
                _builder.LastLine.QuantifierKind = QuantifierKind.MaybeMany;

            if (lazy)
                AppendLazy();
        }

Same methods

PatternBuilder::AppendMaybeMany ( ) : void

Usage Example

 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendMaybeMany();
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendMaybeMany