Hi,
I'm new at perl and don't really come from a programming background - I'm trying to read a file which contains 3 columns of data(numbers) on each line that I've read into an array. How do I assign variable(scalar) values to each element on each line so as to read what's in them? Or are there other/easier ways to read each element not incorporating an array?
ex.
open(FhIn, "data.d");
@lines=<FhIn>;
Any help would be greatly appreciated.
Thanks!