in reply to Re: Re: Re: Re: Fyi
in thread FYI, changing $/ "on the fly"

open(FILE, "<file1.txt") || die $!; { local $/ = "****"; my $a = <FILE>; chomp $a; push @array,$a; $/= "####"; while (<FILE>) { chomp $_; push (@array, $_); } close (FILE); }


T I M T O W T D I