How to replace multiple characters in a string with other characters using Swift

2 Answers

0 votes
import Foundation

var s = "Swift- prog$$$$ra-mming! la!ng-uage!"

s = s.replacingOccurrences(of: "!", with: " ")
     .replacingOccurrences(of: "$", with: "")
     .replacingOccurrences(of: "a", with: "A")
     .replacingOccurrences(of: "-", with: "+")
     
print(s)



/*
run:
   
Swift+ progrA+mming  lA ng+uAge 

*/

 



answered Oct 21, 2024 by avibootz
0 votes
import Foundation

var s = "Swift- prog$$$$ra-mming! la!ng-uage!"
let replacements_old_new: [Character: Character] = ["!":" ", "$":"*", "a":"A", "-":"+"]

for (oldChar, newChar) in replacements_old_new {
    s = s.replacingOccurrences(of: String(oldChar), with: String(newChar))
}

print(s) 


/*
run:
    
Swift+ prog****rA+mming  lA ng+uAge 
 
*/

 



answered Oct 21, 2024 by avibootz
...