Help for this page

Select Code to Download


  1. or download this
        
        # Put fields in Array[counter]
        $Arrays[$counter] = split /\t/, $line;
    
  2. or download this
        $Arrays[$counter] = [ split /\t/, $line ];
    
  3. or download this
        @{ $Arrays[$counter] } = split /\t/, $line;