You'll want to use an expression that uses the indexOf string function. Something like:
indexOf(stringToSearch, stringYouAreSearchingFor)
And you'll want to check if the result is >= 0. If it is, the string contains the search text. If the result is -1, it doesn't contain the text you are searching for.