replacingOccurrences(of:with:options:range:)
Returns a new string in which all occurrences of a target string in a specified range of the receiver are replaced by another given string.
Declaration
func replacingOccurrences(of target: String, with replacement: String, options: NSString.CompareOptions = [], range searchRange: NSRange) -> StringParameters
- target:
The string to replace.
- replacement:
The string with which to replace
target. - options:
A mask of options to use when comparing
targetwith the receiver. Pass0to specify no options. - searchRange:
The range in the receiver in which to search for
target.
Return Value
A new string in which all occurrences of target, matched using options, in searchRange of the receiver are replaced by replacement.