Help for this page

Select Code to Download


  1. or download this
    my @LINES;
    
    ...
        chomp;
        push @LINES, $_;
    }
    
  2. or download this
    chomp (my @lines = <DATA>);
    
  3. or download this
    my $split;
    
    for (@LINES)
    {    my @row = split ('&', $_);