Tidy, but does it do what you expect? I'd be tempted to take both arrays, Split(","), then iterate through one in a fashion like this:
vb Code:
  1. A = String1.Split(",") 'Array 1
  2. B = String2.Split(",") 'Array 2
  3.  
  4. 'A quick check.
  5. if A.Length<>B.Length then
  6.  'They aren't the same.
  7. End if
  8.  
  9. 'A slower check
  10. 'Since they are both string arrays, this should work:
  11. Array.Sort(A)
  12. Array.Sort(B)
  13.  
  14. For x=0 to A.Length-1
  15.  If A(x) <> B(x) Then
  16.    'THey aren't the same
  17.    Exit For
  18.  End If
  19. Next