Any lexical variables declared within an eval will be lost after the eval ends. To capture and isolate global variables that are set within an eval, you could look into using the Safe module to create a new global namespace. Something like the following:
use Safe;
my $vars = Safe->new->reval(qq{
$code_to_eval;
$code_to_search_the_symbol_table_for_declared_variables
});
Where the search code is defined as something that walks the nested %main:: symbol table searching for any variables of interest. You can have it return a data structure containing the information, and then you can do with it what you like.
If you are only worried about variables defined at the root level, you could write something like:
use strict;
use warnings;
my $eval_code = '$foo=42; $bar=3.14;';
use Safe;
my $vars = Safe->new->reval(
$eval_code . q{;
my %vars;
for my $name (keys %main::) {
next if $name =~ /::$/ # exclude packages
or not $name =~ /[a-z]/; # and names without lc letters
my $glob = $main::{$name};
for (qw($SCALAR @ARRAY %HASH)) {
my ($sigil, $type) = /(.)(.+)/;
if (my $ref = *$glob{$type}) {
$vars{$sigil.$name} = /\$/ ? $$ref : $ref
}
}
}
\%vars
});
print "$_: $$vars{$_}\n" for keys %$vars;
# $foo: 42
# $bar: 3.14
The search code could also employ Padwalker to search the current lexical scope for any defined variables using the peek_my function.