Help for this page

Select Code to Download


  1. or download this
    open (THEFILE, $theFile) || die "open $theFile $!\n";
    
  2. or download this
    while (<THEFILE>) {
       my @items = split (/|/, $_);
    }
    close (THEFILE);