in reply to Pattern search in a Multiline Record, from a multi-record datafile.

Rather than reading the file line-by-line and so having each logical record spread over multiple array elements; read teh file record by record:

open my $fh, '<', 'theDumpFile' or die $!; my @code; { local $/ = '</ticket>'; @code = <$fh>; } close $fh; for my $record ( @code ) { my @linesOfRecord = split "\n", $record; ... }

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

  • Comment on Re: Pattern search in a Multiline Record, from a multi-record datafile.
  • Download Code