|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
> $Name = "FirstName";
> $Value = "Jane";
>
> What I would like to do is create a variable $FirstName containing the
> value "Jane"
It is almost always better, and totally straightfoward, to use a hash:
$record{$Name} = $Value;
print "The $Name is $record{$Name}.\n";
If you *must* do this, it is easy:
$$Name = $Value;
but you should see
http://www.plover.com/~mjd/perl/varvarname.html
http://www.plover.com/~mjd/perl/varvarname2.html
http://www.plover.com/~mjd/perl/varvarname3.html
for reasons why this is almost always a very bad idea.
**Majordomo list services provided by PANIX <URL:http://www.panix.com>**
**To Unsubscribe, send "unsubscribe phl" to majordomo@lists.pm.org**
|
|