I have a string like this:
var str = \"DAVID CORPORATION\"
then i have a list of substrings that i dont want in the str.
var de
You can do the following using Any:
Any
strList.RemoveAll(x => describers.Any(d => x.Contains(d)));