YuriyGuts.RegexBuilder.RegexQuantifier.AtLeast C# (CSharp) Method

AtLeast() public static method

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

Same methods

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