in reply to Finding length of array from refrence

Anonymous Monk,
You probably mean one of the following two:
my $last = $#$AoAref; # index of last element # or my $count = @{ $AoAref }; # Number of elements in array
Cheers - L~R