Help for this page

Select Code to Download


  1. or download this
    my $string = "";
    my @new_array;
    ...
         }
    }
    push @new_array, $string; # takes care of the last element
    
  2. or download this
    my $string = "";
    while (my $line = <$input_fh>) {
    ...
         }
    }     
    push @new_array, $string; # take care of the last element