This question is a result of my original question, which I think was not quite what I was looking for: SQL search column where one item in column is substring of another item
You should be able to search for your term along with the line break characters to find what you are looking for.
select * from tbltest where platform like '%' + item + CHAR(13) + CHAR(10) + '%' or platform like '%' + item