Kiko has asked for the wisdom of the Perl Monks concerning the following question:
my @missing; foreach my $f (@fields) { if ($account{$f} eq undef) { push(@missing, @acct_fields{$f}); } }
if ($#missing > -1) { $" = ', '; do something.... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: What does $# stand for?
by tstock (Curate) on Oct 15, 2001 at 00:00 UTC | |
by Fletch (Bishop) on Oct 15, 2001 at 00:43 UTC | |
|
Re: What does $# stand for?
by mischief (Hermit) on Oct 15, 2001 at 19:31 UTC | |
|
Re: What does $# stand for?
by gothic_mallard (Pilgrim) on Oct 15, 2001 at 21:02 UTC |