Vérifiez Swift si la chaîne contient des chaînes

let string = "hello Swift"
if string.contains("Swift") {
    print("exists")
}
Mobile Star