S
Slickuser
I have these variables:
my $path1 = 'c:\abc';
my $filea = 'Y:\a.txt';
my $namex = 'Dr. X';
I want to push this into a hash array or array of variables & values.
Later on, I want loop through these array and modify the value and set
back to the variable.
do a loop now
get variable back
change value
$path1 = 'c:\newpath';
$filea = 'Y:\newfilea.txt';
$namex = 'Dr. Y';
How can I achieve something like this? Thanks.
my $path1 = 'c:\abc';
my $filea = 'Y:\a.txt';
my $namex = 'Dr. X';
I want to push this into a hash array or array of variables & values.
Later on, I want loop through these array and modify the value and set
back to the variable.
do a loop now
get variable back
change value
$path1 = 'c:\newpath';
$filea = 'Y:\newfilea.txt';
$namex = 'Dr. Y';
How can I achieve something like this? Thanks.