Create a function that returns the whole of the first sentence which contains a specific word. Include the full stop at the end of the sentence.
final String str1 = "For the love of Tesh. She is the love of my life. I am all hers.";
final String str2 = "I have a cat. I have a mat. Things are going swell.";
sentenceSearcher(str1, "LOVE") ➞ "For the love of Tesh."
sentenceSearcher(str1, "LIFE") ➞ "She is the love of my life."
sentenceSearcher(str1, "hers") ➞ "I am all hers."
sentenceSearcher(str2, "MAT") ➞ "I have a mat."
sentenceSearcher(str2, "things") ➞ "Things are going swell."
sentenceSearcher(str2, "flat") ➞ ""