Containing Type: QuantifiablePattern
Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll
Method | Summary |
---|---|
Count(Int32) | Specifies that previous element must be matched a specified number of times. |
Count(Int32, Int32) | Specifies that previous element must be matched from minimal to maximum times. |
Specifies that previous element must be matched a specified number of times.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedPattern Count(int exactCount)
exactCount Int32
A number of times the pattern must be matched.
exactCount is less than zero.
Specifies that previous element must be matched from minimal to maximum times.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedPattern Count(int minCount, int maxCount)
minCount Int32
A minimal number of times the pattern must be matched.
maxCount Int32
A maximum number of times the pattern can be matched.
minCount is less than zero or maxCount is less than minCount.