Answers for "replacing parts of a string swift"

1

how to replace certain characters in string swift

let aString = "This is my string"
let newString = aString.replacingOccurrences(of: " ", with: "+", options: .literal, range: nil)
Posted by: Guest on May-30-2020
1

replace character in swift

extension String {
	func withReplacedCharacters(_ oldChar: String, by newChar: String) -> String {
	    let newStr = self.replacingOccurrences(of: oldChar, with: newChar, options: .literal, range: nil)
	    return newStr
	}
}
Posted by: Guest on February-06-2020

Code answers related to "replacing parts of a string swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language