Swift version: 5.10
You should already know that you can check whether a string contains a single word like this:
let string = "The rain in Spain"
let stringResult = string.contains("rain")
You should also know that you can check an array of strings to see whether a particular string is in there, like this:
let words = ["clouds", "rain", "wind"]
let arrayResult = words.contains("rain")
Well, both those contains()
methods can be combined together to form a new meaning: “do any of the words in this array exist in this string?” like this:
let combinedResult = words.contains(where: string.contains)
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 8.0 – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.