http://www.perlmonks.org?node_id=885192


in reply to Getting variables from file

Are you expecting to read multiple lines from the input file or just one? If you intend to read multiple lines and thus (I guess) generate multiple forms put the print lines inside the loop (although there are much better ways to do this).

If you expect to read a single line then replace the loop (and the few lines before it) with:

my $file = '...'; open my $inFile, '<', $file or die "Can't open $file: $!"; my $line = <$inFile>; chomp $line; my ($name1, $name2, $address, $phone) = split("\t"); close($inFile);

As an aside, notice the use of the three parameter version of open and the use of a lexical file handle. Note too the check on the result of the open.

True laziness is hard work

Replies are listed 'Best First'.
Re^2: Getting variables from file
by thezip (Vicar) on Jan 31, 2011 at 04:31 UTC

    Grandfather,

    I must admit that I'm checking the results of system calls less and less these days, thanks to Paul Fenwick's wonderful autodie module.

    It is quite impressive, and removes the necessity of a whole bunch of error checking.

    I especially like the Klingon programming proverb... ;-)



    What can be asserted without proof can be dismissed without proof. - Christopher Hitchens