I have a array with some words and I want to check whether these words exist in my string or not. Here is the sample code
var array: NSArray = ["one", "two", "three", "four"]
var Str: NSString = "one example of my string"
Now one exist in the string, but I am not able to compare them. How to get that one compared?