Contents

init(_:_:)

Creates a regex component that matches the given component zero or more times.

Declaration

init<W, C1, C2, C3, C4, C5, C6, C7, C8>(_ component: some RegexComponent, _ behavior: RegexRepetitionBehavior? = nil) where Output == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)

Parameters

  • component:

    The regex component.

  • behavior:

    The repetition behavior to use when repeating component in the match. If behavior is nil, the default repetition behavior is used, which can be changed from eager by calling repetitionBehavior(_:) on the resulting Regex.