in reply to Re^2: How to evaluate a variable in a text string
in thread How to evaluate a variable in a text string

$string = eval { $_ };
Presuming $_ is not tied in such a way that it would trigger code that "die"-ed, your snippet is the same as:
$string = $_;

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.