Help for this page

Select Code to Download


  1. or download this
    my @array;
    while ( my $line = <FILE> ) {
    ...
        push @array, $1;
      }
    }
    
  2. or download this
    <TAG>data</TAG>
    this is data to be stored
    
  3. or download this
    my @array;
    while( my $line = <FILE> ) {
    ...
        push @array, $data_line;
      }
    }