Help for this page

Select Code to Download


  1. or download this
    while (<FILE>){
       @split_vals=split /,/,$_;
       #process line in @split_vals
    }
    
  2. or download this
    while (<FILE){
       push @split_vals=split /,/,$_;
    }
    #process whole split file.