M
mistaroblivion
Hi everyone,
I have quite a few variables that I'd like to put into a 'vars' pragma
- I'm using a version of perl before the 'our' modifier was
implemented. Anyway, all these scalar variables are called something
like
$file_something, $file_something_else, $file_morestuff ... etc
and there are about 20 or 30 of them. Aside from putting them in a
hash, a package, etc, is there a way I can grab them all based on their
name, inside the parenthesis? Sorta like:
#!/usr/bin/perl
my $file_0 = "thing0";
my $file_1 = "thing1";
use vars (/file_/); #<-- except this obviously doesn't work =(
I think I saw a way to do this once, but now I can't seem to find it.
Any ideas?
Thanks a bunch!
I have quite a few variables that I'd like to put into a 'vars' pragma
- I'm using a version of perl before the 'our' modifier was
implemented. Anyway, all these scalar variables are called something
like
$file_something, $file_something_else, $file_morestuff ... etc
and there are about 20 or 30 of them. Aside from putting them in a
hash, a package, etc, is there a way I can grab them all based on their
name, inside the parenthesis? Sorta like:
#!/usr/bin/perl
my $file_0 = "thing0";
my $file_1 = "thing1";
use vars (/file_/); #<-- except this obviously doesn't work =(
I think I saw a way to do this once, but now I can't seem to find it.
Any ideas?
Thanks a bunch!