Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Extending Array

by jandrew (Chaplain)
on Mar 21, 2012 at 15:12 UTC ( [id://960786]=note: print w/replies, xml ) Need Help??


in reply to Extending Array

An a additional possibility is to turn the HashRef into a hash variable and call a hash slice to add the next two key / value pairs. Read the perlvar detail on $; for more information

#!/usr/bin/perl use strict; use warnings; my $thing = { 'A' => 'hello', 'B' => 'there' }; #use a hash slice @$thing{'C', 'D'} = ('cutie', 'pie'); print "$thing->{'A'} $thing->{'B'} $thing->{'C'} $thing->{'D'}\n";

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 07:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found