Nope, because when you put variables inside double-quoted strings, they get interpolated. This is something you should already know, as you would use it in common statements such as print "The value is $value. The dog's name is $dog{name}. The third element is $elements[2]."

See this:

use strict; use warnings; my %hash = ( foo => "bar", bar => "baz" ); sub testAndExec { my $cond = shift; if (eval $cond) { print "This is executed!\n"; } else { print "Not executing this time.\n"; } print "But there was an error:\n $@" if $@; print "\n"; } my $exeif = "!exist $hash{foo}"; print "Double quotes, existing key: <$exeif>\n"; testAndExec $exeif; $exeif = "!exist $hash{foo}"; print "Double quotes, existing key: <$exeif>\n"; testAndExec $exeif; $exeif = '!exists $hash{bar}'; print "Single quotes, existing key: <$exeif>\n"; testAndExec $exeif; $exeif = '!exists $hash{baz}'; print "Single quotes, non-existing key: <$exeif>\n"; testAndExec $exeif;

Output:

Double quotes, existing key: <!exist bar> Not executing this time. But there was an error: Can't locate object method "exist" via package "bar" (perhaps you +forgot to load "bar"?) at (eval 1) line 1. Double quotes, existing key: <!exist bar> Not executing this time. But there was an error: Can't locate object method "exist" via package "bar" (perhaps you +forgot to load "bar"?) at (eval 2) line 1. Single quotes, existing key: <!exists $hash{bar}> Not executing this time. Single quotes, non-existing key: <!exists $hash{baz}> This is executed!

Update: fixed a logical flaw spotted by AnomalousMonk. Thanks.


In reply to Re: Dynamic execution of expression by muba
in thread Dynamic execution of expression by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.