in reply to What does $# stand for?
if (scalar @missing)
scalar @array == ($#array + 1) # is always true unless you redefine where the index starts. for my $i (0..$#array) { # loops through the array by index number }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: What does $# stand for?
by Fletch (Bishop) on Oct 15, 2001 at 00:43 UTC |