Re:[OT]Determining array length on multidimensional arrays

2001-07-31 Thread Paul
--- "Randal L. Schwartz" <[EMAIL PROTECTED]> wrote: > > "Paul" == Paul <[EMAIL PROTECTED]> writes: > > Paul> (And as always, if I fumbled something, please tell me. =o) > > No, that's a nice summary. Thanks! ~grin!~ > This is why when people ask why we don't cover "multidimensional > arr

Re: Determining array length on multidimensional arrays

2001-07-31 Thread Paul
--- "Randal L. Schwartz" <[EMAIL PROTECTED]> wrote: > (aside to the rest of the experts: Perl doesn't have multidimensional > arrays, people. Let's please stop confusing the newbies by calling > it that.) A very good point. I hesitate to ask what how we *should* refer to it, but the apparent

Re: Determining array length on multidimensional arrays

2001-07-31 Thread Peter Scott
At 11:23 AM 7/31/01 -0700, Michael Dube wrote: >Howdy, > >I know that to determine the array length of @array, the following options >are available: >a) $#array (returns last index) >b) scaler(@array) (returns true length) > >Now... if I have a multidimensional array, $array[$x][$y], how do I >det

Determining array length on multidimensional arrays

2001-07-31 Thread Michael Dube
Howdy, I know that to determine the array length of @array, the following options are available: a) $#array (returns last index) b) scaler(@array) (returns true length) Now... if I have a multidimensional array, $array[$x][$y], how do I determine the array length for $array[$x]? I am trying to