Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Changing variable names in a loop

by superfrink (Curate)
on Oct 15, 2010 at 20:02 UTC ( [id://865557]=note: print w/replies, xml ) Need Help??


in reply to Changing variable names in a loop

I prefer to use hash table keys when the idea of dynamic variable names comes up.
#! /usr/bin/perl -w use strict; use Data::Dumper; my @fields = qw/ inc_albums inc_genres /; my %record; my $content = "inc_albums=asdf\n"; foreach my $field (@fields) { ($record{$field}) = $content=~/${field}=(.*?)\n/; } print Dumper(\%record);

The output is:
$VAR1 = { 'inc_genres' => undef, 'inc_albums' => 'asdf' };

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-19 21:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found