Help for this page

Select Code to Download


  1. or download this
    while(<$fileText>){
        chomp;
    ...
            last;
        }
    }
    
  2. or download this
    chomp($_ = <$file_handle>);  # read, chomp one line
    my @split_fields = split /\t/;