init(_:_:_:)
Creates a regex component that matches the given component repeated a number of times specified by the given range expression.
Declaration
init<W, C1, C2, C3, C4, C5, C6, C7, C8>(_ expression: some RangeExpression<Int>, _ behavior: RegexRepetitionBehavior? = nil, @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent) where Output == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)Parameters
- expression:
A range expression specifying the number of times that
componentcan repeat. - behavior:
The repetition behavior to use when repeating
componentin the match. Ifbehaviorisnil, the default repetition behavior is used, which can be changed fromeagerby callingrepetitionBehavior(_:)on the resultingRegex. - componentBuilder:
A builder closure that creates the regex component to repeat.