in reply to Re: Re: foreach question
in thread foreach question
Much better (and faster) than using joins, or loops to append. Keep it inside the {} block so that the change to $/ is only temporary. (also see $/ at perldoc). The file's entire content ends up in $slurp.# FILE is already open ... { local $/ = undef; $slurp = <FILE>; }
|
|---|