http://qs321.pair.com?node_id=754544


in reply to Re: multi-line parsing
in thread multi-line parsing

You could also undef the separator and match globally ...
Be aware that the code given will globally alter the $/ package variable (see perlvar).

A more 'idiomatic' way to slurp the contents of a file without globally changing  $/ (if you do not use the File::Slurp module or an equivalent) is with the statement

my $file_contents = do { local $/; <$file_handle> };
or
my $file_contents = do { local $/; <FILEHANDLE> };