Answers for "swift check to see if string contains"

5

How do I check if a string contains another string in Swift

let string = "hello Swift"
if string.contains("Swift") {
    print("exists")
}
Posted by: Guest on January-30-2020

Code answers related to "swift check to see if string contains"

Code answers related to "Swift"

Browse Popular Code Answers by Language