SparceMatrix
Technical User
Multidimensional Arrays - This simple program doesn't work - Tie::File.
I am trying to create a multidimensional array and I can't seem to access the members of the array. I am using Tie::File to write the contents of a file into an array so that each line is a member of the array. But also, I want break down each record, splitting it so that the record becomes an array as well. I want to wind up with a two dimensional array with the first dimension being the row and the second being split members of the row.
Here is my "TieTest.txt" text file to read from:
And here is the simple program:
Does anyone have any idea what I am missing? Should I be applying a different strategy?
I am trying to create a multidimensional array and I can't seem to access the members of the array. I am using Tie::File to write the contents of a file into an array so that each line is a member of the array. But also, I want break down each record, splitting it so that the record becomes an array as well. I want to wind up with a two dimensional array with the first dimension being the row and the second being split members of the row.
Here is my "TieTest.txt" text file to read from:
Code:
One One, One Two, One Three, One Four
Two One, Two Two, Two Three, Two Four
Three One, Three Two, Three Three, Three Four
Four One, Four Two, Four Three, Four Four
And here is the simple program:
Code:
#!/usr/bin/perl
use Tie::File;
use Fcntl;
$filename = "TieTest.txt";
tie(@opendata, Tie::File, $filename, mode => O_RDONLY)
or die "!!!!\n";
@data=@opendata;
print "\n";
foreach $data (@data) {
print "\$data = $data --> ";
@split = split ",", $data ;
$data = @split;
print "New \$data = $data \n";
}
print "\n Outside foreach \$data = \"$data\"\n\n";
for($i=0; $i<=$#data; $i++)
{
print " For row $i --> ";
for($j=0; $j<4; $j++)
{
print "$j: \"$data[$i][$j]\" ";
}
print "\n";
}
Does anyone have any idea what I am missing? Should I be applying a different strategy?