P
puzzlecracker
you have a sentence and you need to find wether it contains a word; for
example "he is great " .containts("is") returns true, but "his
great".contains("is") also returns true, but I want it to return false
I tried regexpe but it didnt work String
patterns="[^A-Za-z]+str+[^A-Za-z]" ?
but it didnt work.
example "he is great " .containts("is") returns true, but "his
great".contains("is") also returns true, but I want it to return false
I tried regexpe but it didnt work String
patterns="[^A-Za-z]+str+[^A-Za-z]" ?
but it didnt work.