Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Add part of one hash to another

by kennethk (Abbot)
on Feb 26, 2013 at 15:23 UTC ( [id://1020706]=note: print w/replies, xml ) Need Help??


in reply to Add part of one hash to another

You will get a lot of traction here from Slices - the ability to specify a subset of an array. The actual structure is a little obtuse to me, but you''l probably want something like:
################################## # Add on File B's data for my $i ( 0 .. $#H_USES ) { $HoA{$H_USES[$i][5]} = [@{$H_USES[$i]}[0, 1, 3 .. $#{$H_USES[$i]}]]; } # end looping over rows ##################################

You'd have something cleaner if you don't mind being destructive, because you can use splice:

################################## # Add on File B's data for my $i ( 0 .. $#H_USES ) { splice(@{$H_USES[$i]},2,1); # Eliminate 1 field at location 2 $HoA{$H_USES[$i][5]} = $H_USES[$i]; } # end looping over rows ##################################

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1020706]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-20 01:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found