Help for this page

Select Code to Download


  1. or download this
    while (<FH>){
            my @t= split(',',<FH>);
    ....
    
  2. or download this
    while (<FH>){
            chomp;
            my @t= split(',',$_);