Hi all,
I am trying to parse information from multiple files for some feilds.
My objective is to make a matrix out of those feilds.
for exanple:I have 3 feilds with queryname,subject name and percent ID.
I want to print in an excel sheet
Qname1 Qname2
Subname1 percent ID1 percent ID2
I am trying to catch the Qname,Sname and Ids in a ID hash:
push(@{$idmatrix{$qname}},$qname[$q]);
push(@{$idmatrix{$id}},$id);
push(@{$idmatrix{$sname}},$sname[$s]);
I am unable to figureout how to print them in the format i wanted.
Also how to avoid repeated name in the hash;
Please ...please help me.
Thanks
I am trying to parse information from multiple files for some feilds.
My objective is to make a matrix out of those feilds.
for exanple:I have 3 feilds with queryname,subject name and percent ID.
I want to print in an excel sheet
Qname1 Qname2
Subname1 percent ID1 percent ID2
I am trying to catch the Qname,Sname and Ids in a ID hash:
push(@{$idmatrix{$qname}},$qname[$q]);
push(@{$idmatrix{$id}},$id);
push(@{$idmatrix{$sname}},$sname[$s]);
I am unable to figureout how to print them in the format i wanted.
Also how to avoid repeated name in the hash;
Please ...please help me.
Thanks