perl question: length of array of arrays - Ubuntu Forums
In perl, say you have an MxN array, @array. How do you get the length of each "dimension"? What I mean is the equivalent of $#array in multiple dimensions. If I do $#array, I will get the number MxN. If I do $#{$array} I will get N (the number of columns ...