jaffinito34 has asked for the wisdom of the Perl Monks concerning the following question:
I'm working on a script where I'm given a CSV file with info (first and last names, ssn, address, etc) and I first need to separate everything, which the code does, but then I need to make an output file with the first letter of the first name, last 3 letters of last name, and more... My problem is the output file is blank after I run the script to see if anything is getting written in. See code below
#! /usr/bin/perl # CSC 310 Project # 1 print "Enter filename: "; chomp($fileName = <STDIN>); open (FILE, '<', $fileName) || die ("Could not open $fileName\n"); while ($line = <FILE>){ print "\n"; ($lastName,$firstName,$ssn,$address,$city,$state,$zip,$phone) = sp +lit ',', $line; print "$lastName, $firstName\n"."$ssn\n"."$address\n", "$city $sta +te $zip\n"; open (PSWD, '>>', 'passwd.txt'); print PSWD "$firstName[1]\n"; }
Any help or reference to help is appreciated!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Output to another file help
by roboticus (Chancellor) on Nov 08, 2012 at 21:21 UTC | |
by jaffinito34 (Acolyte) on Nov 08, 2012 at 21:39 UTC | |
by jaffinito34 (Acolyte) on Nov 08, 2012 at 21:36 UTC | |
|
Re: Output to another file help
by space_monk (Chaplain) on Nov 09, 2012 at 01:29 UTC | |
|
Re: Output to another file help
by Kenosis (Priest) on Nov 08, 2012 at 22:13 UTC |