Jak sprawdzić, czy ciąg zawiera inny ciąg w Swift

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