in reply to Assigning scalar to each field in a flat file database
open (THEFILE, $theFile) || die "open $theFile $!\n"; [download]
while (<THEFILE>) { my @items = split (/|/, $_); } close (THEFILE); [download]