Hi,

Hopefully someone here can help me.  I'm reading in a text file, and 
setting it to an array, and I want ot split that array in 3 variable, 
but I kepp coming up with, 'uninitiated value in contatenation (.) or 
string and line ..."

Here is the code:

#!/user/bin/perl -w

use strict;

my $dlast;
my $daddy;
my $dphone;

open (DYNIXDBF, "dynixte.txt");

my @dynixdata = <DYNIXDBF>;

foreach my $dynixrec (@dynixdata) {
        ($dlast,$daddy,$dphone) = @_;  
        print "Dynix: $dlast $daddy $dphone\n";
}

close(DYNIXDBF);

All I want to do is to split it so I can fo some comparing later.

Anyone have any ideas?

Joseph Ruffino
Automated Systems Assistant
Gail Borden Public Library District
Elgin., IL
[EMAIL PROTECTED]


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to