Passing a hash reference to a subroutine (Perl)
Q. How do I pass a hash reference to a subroutine in Perl?
A. This can be achieved by preceeding the hash with a slash when passing:
#assume you have a hash
my %results = (start_date => "may 1", end_date => "sep 1");
#pass the hash
test(\%results);
#your subroutine
sub test {
my $ref = shift;
# assign new variable
$ref->{'start_date'} = "new date";
}
Last Updated on Tuesday, 23 August 2011 21:26
Comments (1)
:-)
1
Wednesday, 06 January 2016 14:55
David
This is exactly what I needed to see. Thank you!
Add your comment
yvComment v.1.24.0