Ok Say I have two arrays:
array1('Bill, Gates, Microsoft, Seattle, USA');
array2('Microsoft,Seattle, USA', 'Microsoft, Washington, USA');
I need to match a portion of array 1 which is: Microsoft,Seattle,USA with array2.
Is there a function that can compare this and return true if a portion of array 1 is in array 2? In this case we find 'Microsoft,Seattle,USA' in array 1 and array 2.