in reply to Re: Check for next array element.
in thread Check for next array element.
$data->{'IS_LAST'} = 0; for ( my $i = 0; $i < @list; $i++ ) { # DO STUFF $data->{'IS_LAST'} = 1 if $i == $#list; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Check for next array element.
by Aristotle (Chancellor) on Nov 18, 2005 at 19:18 UTC | |
|
Re^3: Check for next array element.
by friedo (Prior) on Nov 18, 2005 at 18:50 UTC |