replace(_:maxReplacements:with:)
Replaces all occurrences of the sequence matching the given regex with a given collection.
Declaration
mutating func replace<Output, Replacement>(_ regex: some RegexComponent, maxReplacements: Int = .max, with replacement: (Regex<Output>.Match) throws -> Replacement) rethrows where Replacement : Collection, Replacement.Element == CharacterParameters
- regex:
A regex describing the sequence to replace.
- maxReplacements:
A number specifying how many occurrences of the sequence matching
regexto replace. Default isInt.max. - replacement:
A closure that receives the full match information, including captures, and returns a replacement collection.