Help for this page
local $/ = q{address}; # Set record separator to 'address'. open my $infile, '<', 'filename.txt' or die $!; ... next unless length; print "address $_\n"; }