On Wed, May 14, 2008 at 4:01 PM, Tech list <[EMAIL PROTECTED]>
wrote:

> what is the correct way to get the number of items in an array?
>
> I used to use $#array
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> http://learn.perl.org/
>
>
>

$#array is the index of the last item, so the number should be $#array + 1,
or
scalar @array

Reply via email to