Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys!
Do anyone has ready solution how to compare content of two arrays in VBS?
My example is:
Array1=Array("Value1","Value2","Value3")
Array2=Array("Value10","Value1","Value12", "Value13")
I need to create the third array which will contain the all elements from second array which are not in first.
So expected result:
Array3 ("Value10","Value12", "Value13").
Thanks in advance!