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)
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's all new Paywall Editor allow you to remotely configure your paywall view without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
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.