in reply to implicit split to @_ is deprecated

You were close:

my $start=(split(/ /,$data[146]))[3];

----
I wanted to explore how Perl's closures can be manipulated, and ended up creating an object system by accident.
-- Schemer

Note: All code is untested, unless otherwise stated

Replies are listed 'Best First'.
Re: Re: implicit split to @_ is deprecated
by Anonymous Monk on Aug 29, 2003 at 17:05 UTC
    Righteous! That's exactly it! I knew I was somewhere close! Thanks Again!