我喜欢使用 Perl 从外部 Perl 脚本中捕获所有全局变量。目前我在类型检测周围徘徊。
如何确定正确的数据类型(''、'SCALAR'、'HASH'、'ARRAY'、'CODE')?
解析器脚本:
my %allVariables = ();
{
do "scriptToBeParsed.pl";
foreach my $sym ( keys %main:: ) {
# Get all normal variables and scalar/hash/array references:
if ( ref( *{"$sym"} ) =~ m/^(?:|SCALAR|HASH|ARRAY)$/ ) {
$allVariables{"$sym"} = *{"$sym"};
}
}
}
要解析的脚本:
$someVariable1 = 'Yes, I like to be captured';
$otherVariable2 = \'And I also want to be captured';
%anotherVariable3 = ( 'Capture' => 'me' );
@lameVariable4 = ( 'Capture', 'me' );
$fooVariable5 = { 'Capture' => 'me' };
$barVariable6 = [ 'Capture', 'me' ];
$subVariable7 = sub { return "Don't capture me!" };
sub dontCaptureMe { return "Don't capture me!" }
在我的示例ref( *{"$sym"} )
中,总是返回“GLOB”(当然)。