in reply to Retrieve only what I need from split without using temp array
ormy (undef, undef, $third) = split ",", $foo;
my $third = (split ",", $foo)[2];
-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.
|
|---|