in reply to Add part of one hash to another
Looks a bit simple ... have I understood the problem correctly? :)while ( <TEXTFILE> ) { $csv->parse($_); push @H_USES, [ ($csv->fields)[0, 2..10] ]; # or whatever the numb +er of fields in the file }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Add part of one hash to another
by batrams (Novice) on Feb 26, 2013 at 16:04 UTC | |
by tangent (Parson) on Feb 26, 2013 at 16:28 UTC |