If String.Contains an item from List ?

For some reason, I can’t find any info on this (though my Google skills might be lacking).

I’m trying to check if the name of a GameObject contains one of the words in a list of strings.
I know I can use String.Contains() but how would I use this with a list?

Thanks!

Something like?


bool containsItem;
foreach(var item in myList)
{
    if(containsItem) break;
    containsItem = myString.Contains(item);
}