You can use the search function.
Search(sharepointlist,"text to search for","field to search in")
Note the field name does go in quotes.
The problem with this is that this is not delegable, so this will have issues with larger lists.
Another way is to use in:
Filter(sharepointlist,"text to search for" in fieldname)
But again, also not delegable.