in reply to How can i take a file loaded into an array and split it up into different...
my @array; { local $/ = ':'; open INPUT, 'file.txt' or die "blah: $!"; @array = <INPUT>; close INPUT; }
--
AltBlue.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How can i take a file loaded into an array and split it up into different...
by bbfu (Curate) on Jan 27, 2001 at 06:57 UTC |