in reply to Re: Parsing a csv file with multiple data records in it (generated from Window's IOMeter)
in thread Parsing a csv file with multiple data records in it (generated from Window's IOMeter)

for my $i (0..$#fields) { $data[$index-1]->{$fields[$i]} = $values[$i]; }

I have slices in the brain:

@{ $data[ $index-1 ] }{ @fields } = @values;

the lowliest monk

  • Comment on Re^2: Parsing a csv file with multiple data records in it (generated from Window's IOMeter)
  • Select or Download Code