in reply to Re^2: Length of multidimensional array based on the particular index value
in thread Length of multidimensional array based on the particular index value
it would have to be: do { $length++ if $_->[2] } for @select;
Can also be:
$_->[2] and $length++ for @select;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Length of multidimensional array based on the particular index value
by jwkrahn (Abbot) on Feb 24, 2011 at 10:48 UTC |