in reply to Re: How do I compare two arrays?
in thread How do I compare two arrays?

The best way what i find is to compare

use FreezeThaw qw(cmpStr);

@a =(1,2,3,4);
@b = ( "this", "that", "more", "stuff" );
@c = (1,2,3,5);

printf "a and b contain %s arrays\n",cmpStr(\@a, \@b) == 0 ? "the same" : "different";

printf "a and c contain %s arrays\n",cmpStr(\@a, \@c) == 0 ? "the same" : "different";