Метод | Описание | |
---|---|---|
AtLeast ( int minOccurrenceCount ) : |
The "{n,}" quantifier. Minimum occurrence count.
|
|
AtLeast ( int minOccurrenceCount, bool isLazy ) : |
The "{n,}" or "{n,}?" quantifier. Minimum occurrence count. True - use lazy quantifier. False - use greedy quantifier.
|
|
Custom ( int minOccurrenceCount, int maxOccurrenceCount, bool isLazy ) : |
Custom "{n,m}" or "{n,m}?" quantifier.
|
|
Exactly ( int occurrenceCount ) : |
The "{n}" or "{n}?" quantifier. Exact occurrence count.
|
|
Exactly ( int occurrenceCount, bool isLazy ) : |
The "{n}" or "{n}?" quantifier. Exact occurrence count. True - use lazy quantifier. False - use greedy quantifier.
|
|
RegexQuantifier ( ) : System |
Initializes a new instance of RegexQuantifier.
|
|
RegexQuantifier ( int minOccurrenceCount, int maxOccurrenceCount ) : System |
Initializes a new instance of RegexQuantifier.
|
|
RegexQuantifier ( int minOccurrenceCount, int maxOccurrenceCount, bool isLazy ) : System |
Initializes a new instance of RegexQuantifier.
|
|
ToRegexPattern ( ) : string |
Converts RegexQuantifier to a Regex pattern string.
|
public static AtLeast ( int minOccurrenceCount ) : |
||
minOccurrenceCount | int | |
Результат |
public static AtLeast ( int minOccurrenceCount, bool isLazy ) : |
||
minOccurrenceCount | int | |
isLazy | bool | |
Результат |
public static Custom ( int minOccurrenceCount, int maxOccurrenceCount, bool isLazy ) : |
||
minOccurrenceCount | int | Minimum occurrence count. |
maxOccurrenceCount | int | Maximum occurrence count. |
isLazy | bool | True - use lazy quantifier. False - use greedy quantifier. |
Результат |
public static Exactly ( int occurrenceCount ) : |
||
occurrenceCount | int | |
Результат |
public static Exactly ( int occurrenceCount, bool isLazy ) : |
||
occurrenceCount | int | |
isLazy | bool | |
Результат |
public RegexQuantifier ( int minOccurrenceCount, int maxOccurrenceCount ) : System | ||
minOccurrenceCount | int | Minimum occurrence count. |
maxOccurrenceCount | int | Maximum occurrence count. |
Результат | System |
public RegexQuantifier ( int minOccurrenceCount, int maxOccurrenceCount, bool isLazy ) : System | ||
minOccurrenceCount | int | Minimum occurrence count. |
maxOccurrenceCount | int | Maximum occurrence count. |
isLazy | bool | True - use lazy quantifier. False - use greedy quantifier. |
Результат | System |