Hello,
I have a dictionary of array of string. The array of string have keywords I need to check on a string input. Example:
keywordArr = {“Banana”, “Apple”, “Orange”}
I need to check if the string have all the keywords in the array. Is there a method for this like keywords.Any(function(x) InputString.Contains(x)).ToString ?
Thanks!