Help for this page

Select Code to Download


  1. or download this
    while (<$fh_in>)
    {
    ...
               #this works for files from any OS
       my @array = split(';',$_);
    }
    
  2. or download this
    while (<$fh_in>)
    {
    ...
       my ($first_thing) = split(';',$_);
       print "$first_thing\n";
    }