You can use the 'contains' expression in your microflow.
I would create 2 variables, one for the respons and one for the search string. If you make them both lowercase ( expression: tolowercase(variable) ) you also tackle the case sensitive problem.
The contains expression should be something like this:
contains($webserviceRespons, $searchcriteria)
Good luck!