in reply to Re^3: Passing Along Arrays
in thread Passing Along Arrays
Nope, I didn't.
sub extractData { my @projects; push @projects, [ \readOnly( "$proj Data.txt" ), "A"]; unless( $pointerProj eq "NONE" ) { push @projects, [ \readOnly( "$pointerProj Data.txt", "B"]; } for( @projects ) { my @UTdata = $_->[0]; my $key = $_->[1]; ... } } sub readOnly { my @contents; my $filePath; my $file; my $errMsg; $filePath = "$path\\" . $_[0]; $errMsg = "Unable to read $filePath: $!"; open $file, '<', $filePath or die $errMsg; @contents = <$file>; close $file; return @contents; }
Thanks for the help. I had been stuck on this for a while so some outside input was really needed.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Passing Along Arrays
by frozenwithjoy (Priest) on Aug 26, 2014 at 22:13 UTC | |
|
Re^5: Passing Along Arrays
by 2teez (Vicar) on Aug 26, 2014 at 21:52 UTC | |
by Perl_Ally (Novice) on Aug 27, 2014 at 13:27 UTC | |
|
Re^5: Passing Along Arrays
by Perl_Ally (Novice) on Aug 27, 2014 at 13:40 UTC |