.true if phrase
is found in the receiving string.
Returns .false if phrase
contains no words or if phrase
is not found.
Multiple whitespace characters between words in either
phrase or the receiving string are
treated as a single blank for the comparison, but, otherwise, the words
must match exactly.good = "Now is the time for all good men"
say good~containsWord("the") -- .true
say good~containsWord("The") -- .false
say good~containsWord("is the") -- .true
say good~containsWord("is the ") -- .true
say good~containsWord("is time") -- .false
say good~containsWord("time") -- .true
say good~containsWord("time", 5) -- .false