Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendOneMany C# (CSharp) Метод

AppendOneMany() публичный Метод

Appends a quantifier that matches previous element one or more times.
public AppendOneMany ( ) : void
Результат void
        public void AppendOneMany()
        {
            AppendOneMany(false);
        }

Same methods

PatternBuilder::AppendOneMany ( bool lazy ) : void

Usage Example

Пример #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendOneMany();
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendOneMany