Answers for "\" replade with " swift 5"

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

Code answers related to "Swift"

Browse Popular Code Answers by Language