// array_match( , ); function script array_match { .@size1 = getarraysize( getelementofarray( getarg(0),0 ) ); .@size2 = getarraysize( getelementofarray( getarg(1),0 ) ); if( .@size1 == .@size2 ) while( .@index < .@size1 ){ if( getelementofarray( getarg(0),.@index ) == getelementofarray( getarg(1),.@index ) ) .@match++; .@index++; } return (( .@match == .@size1 && .@match == .@size2 )?"match":" not match" ); }