Example:
Sub snb()
sq=split("aa|bb|cc|dd|ee|ff|gg","|")
sn=array("aa","zz","yy","bb","cc","dd","ee","ff","bb")
For j=0 to ubound(sn)
If ubound(filter(sq,sn(j)))=-1 then c01=c01 & "|" & sn(j)
next
End Sub
The string c01 contains all values in array sn that array sq doesn't.
But in this case you don't even need to compare arrays:
Sub snb_001()
c02="|aa|bb|cc|dd|ee|ff|gg|"
sn=array("aa","zz","yy","bb","cc","dd","ee","ff","bb")
for j=0 to ubound(sn)
if instr(c02,"|" & sn(j) & "|")=0 then c01 =c01 & "|" & sn(j)
next
End Sub
Bookmarks