in reply to Re: How do I find the size of an array?
in thread How do I find the size of an array?

Either of the commands should do the job: scalar(@array); $#array Shashidhar Iddamsetty
  • Comment on Re: Answer: How do I find the size of an array?

Replies are listed 'Best First'.
Re^2: Answer: How do I find the size of an array?
by Anonymous Monk on Apr 28, 2007 at 10:18 UTC
    wrong