I'm not looking for how to find a string inside another string. I'm looking for a word. So the solution should pass these tests:
let result: Bool = senx.contains(word: "are")
let sen1 = "We are good." //true
let sen2 = "We care about you." //false
let sen3 = "are" //true
let sen4 = "are." //true
let sen5 = "Are." //true
let sen6 = "I have a flare." //false