in reply to implicit split to @_ is deprecated
This will avoid matching the delimiter more than three times and can save you some time when processing huge amounts of data in scalar variables. So it probably doesn't apply to your case. But maybe you'll find it entertaining, at least ;-)my $start = split(/\s+/, $data[146], 4)[3];
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: implicit split to @_ is deprecated
by Anonymous Monk on Aug 29, 2003 at 19:07 UTC | |
by CombatSquirrel (Hermit) on Aug 29, 2003 at 21:16 UTC |