in reply to perlrun -0777 option
Does unicode somehow thwart an undef'ed input record seperator ( $/ )?my $var = ''; # or perhaps my @var = (); { local $/ = undef; open(FH,"<myfilepath/andname") or die "A horrible death $!"; $var = <FH> ; close(FH); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: perlrun -0777 option
by John M. Dlugosz (Monsignor) on Jun 26, 2003 at 16:53 UTC | |
by nevyn (Monk) on Jun 26, 2003 at 17:25 UTC | |
|
Re: Re: perlrun -0777 option
by dataDrone (Acolyte) on Jun 26, 2003 at 16:29 UTC |