YuriyGuts.RegexBuilder.RegexQuantifier.AtLeast C# (CSharp) 메소드

AtLeast() 공개 정적인 메소드

The "{n,}" quantifier. Minimum occurrence count.
public static AtLeast ( int minOccurrenceCount ) : RegexQuantifier
minOccurrenceCount int
리턴 RegexQuantifier
        public static RegexQuantifier AtLeast(int minOccurrenceCount)
        {
            return new RegexQuantifier(minOccurrenceCount, null, false);
        }

Same methods

RegexQuantifier::AtLeast ( int minOccurrenceCount, bool isLazy ) : RegexQuantifier