How to remove all occurrences of a character in a string with Swift

1 Answer

0 votes
import Foundation

func removeCharacter(from s: String, character: Character) -> String {
    return s.replacingOccurrences(of: String(character), with: "")
}

var s = "Swift powerful programming language for macOS"
let charToRemove: Character = "o"

s = removeCharacter(from: s, character: charToRemove)

print(s)



/*
run:

Swift pwerful prgramming language fr macOS

*/

 



answered Dec 24, 2024 by avibootz
...