On Mon, Feb 18, 2002 at 09:17:50AM -0800, Agustin wrote: > Quick one.. is there a way to evaluate the size of an array? Right now I'm > writing the arrays to a file and then doing an "ls -l" to compare sizes. The > array is of type $array[0][0] and not $array[0] (if anyone has the proper > terminology on this, I'd appreciate it).
try scalar(@array) or scalar(@{$array[0]}) perldoc perldata perldoc perllol -- Frank Booth - Consultant Parasol Solutions Limited. (www.parasolsolutions.com) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]