I'm trying to get unmatched strings in 2 arrays. I've tried this How to search for string in an array , but they return true or false.
dim arr1 as variant
dim arr2 as variant
arr1 = "abc,def,ghi,jkl"
arr2 = "abc,def,ghi,jkl,pre,ec,vw"
But i'm trying to get the strings like result="pre,ec,vw" How to specify that in vba