Help for this page

Select Code to Download


  1. or download this
    my $filename = 'Facs_Data.txt';
    open my $fh, '<', $filename
        or die "Couldn't open '$filename': $!";
    
    my @lines = grep { /Acct:/ } <$fh>; # Read a file line by line and sel
    +ect the lines matching Acct:
    
  2. or download this
    @lines = map { [ split $_, /:/ ]->[1] } @lines; # Take the side to the
    + right of : of the line
    
  3. or download this
    @lines = map { [ split $_, /:/ ]->[0] } @lines; # take the side to the
    + left of the blank of the line
    
  4. or download this
    my $filename = 'Facs_Data.txt';
    open my $fh, '<', $filename
    ...
    
    # do whatever with the values in @lines
    print "$_\n" for @lines;