Help for this page

Select Code to Download


  1. or download this
    while (<FH>) {
      chomp ;
      @array = split ;
      # do something with @array
    }
    
  2. or download this
    while (<FH>) {
      $line = $_ ;
    ...
      # do something with @array; $_ is preserved so you
      # can use it again
    }