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

AppendOneMany() public method

Appends a quantifier that matches previous element one or more times.
public AppendOneMany ( ) : void
return void
        public void AppendOneMany()
        {
            AppendOneMany(false);
        }

Same methods

PatternBuilder::AppendOneMany ( bool lazy ) : void

Usage Example

Esempio n. 1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendOneMany();
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendOneMany