in reply to
Re: using regex with records
in thread
using regex with records
Sorry -- the \n\n isn't posted in the _DATA_ -- I'm just including one record for an example.
Comment on
Re^2: using regex with records
Replies are listed 'Best First'.
Re^3: using regex with records
by
toolic
(Bishop)
on Jan 02, 2012 at 01:57 UTC
.*
does not match
\n
by default. You need to use
//s
. Read
perlre
.
[reply]
[d/l]
[select]
In Section
Seekers of Perl Wisdom