Как проверить, содержит ли строка другая строка в Swift

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