in reply to Re: simple for some
in thread Comparing file contents to array values
Then it prints the entire string again. Thenforeach( @results ) { $record = $_; print $record; } @test = $record; print @test[0];
Then it prints nothing in the second print. Thenforeach( @results ) { $record = $_; print $record; } @test = $record print @test[1];
but nothing. I just need to get hold of the elements individually so I can do something with the little critters. May god bless you guys.foreach( @results ) { $record = $_; print $record; } @test = $record $scalar = $array[0]; print $scaler;
|
|---|