That may be the "Perl way", but according to the Damian Conway-authored Perl Best Practices, a better way would be:for (@arr) { $_ = uc; }
for my $index (@arr) { $index = uc $index; }
In reply to Re^2: pipe one function output to another
by markkawika
in thread pipe one function output to another
by bob_dobalina
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |