Help for this page

Select Code to Download


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