On Tue, 1 Oct 2002, Kipp, James wrote: > > and just so you don't try to load any blank lines into the hash and get an > error, throw in a check for blank lines > > > > open (INPUTFILE, $your_input_file) or die "Error opening > > $your_input_file: $!\n"; > > my %uniq_hash; > > > > while (<INPUTFILE>) { > > next if /^$/; ## SKIP BLANKS
should have done that check, thanks for the correction -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]