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