Perhaps you could consider loading you data into one data structure instead of three arrays.
You might also want a more general purpose approach where it would be easier to change the number and name of the columns.
Putting aside the question of commas inside the fields and any other error checking one approach might be like this.
It creates an array of hashes. If you were thinking of using something like HTML::Template for your output this would be very handy! :-)
output:#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @AoH; my @fields = qw(subject grade rank); while (my $record = <DATA>){ chomp $record; my @values = $record =~ /([^,]+)/g; push @AoH, { map {$fields[$_] => $values[$_]} (0..$#fields) }; } print Dumper \@AoH; __DATA__ english,1,1 history,2,2 science,3,3 biology,4,4
---------- Capture Output ---------- > "C:\Perl\bin\perl.exe" _new.pl $VAR1 = [ { 'subject' => 'english', 'grade' => '1', 'rank' => '1' }, { 'subject' => 'history', 'grade' => '2', 'rank' => '2' }, { 'subject' => 'science', 'grade' => '3', 'rank' => '3' }, { 'subject' => 'biology', 'grade' => '4', 'rank' => '4' } ]; > Terminated with exit code 0.
Hope that helps.
In reply to Re^2: Using Split to load a hash
by wfsp
in thread Using Split to load a hash
by Grey Fox
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |