${"str$_"} is not a "hard" reference, it's a symbolic reference. i.e. it just refers to the name of a variable. You can't use symbolic refences while you have "strict refs" in use (as the error correctly states).

You can use symbolic references if you switch off "strict refs":

for (1..3) { no strict 'refs'; my $ref = \${'str'.$_}; # this creates a hard reference VIA a symb +olic reference # or: my $ref = "str$_"; # this is a purely symbolic reference, +access is the same as above print "The string is $$ref"; }
update: you can only refer to GLOBALs with symbolic references. (update2: here's the relevant documentation in perlref) That's why that code still won't work. Here's a working version:
#!/usr/bin/perl -l use warnings; use strict; our $str1 = qq[A-M o'Foo']; our $str2 = qq[.,rtyu_'']; our $str3 = qq[$<%^]; our $str4 = qq[this works]; my $ref4 = \$str4; print $$ref4; # works as expected for (1..3) { no strict 'refs'; my $ref = \${'str'.$_}; print "The string is $$ref"; }

Note that in your example using a simple array would be much easier, less error-prone and more efficient. Symbolic references are almost only useful these days for creating subroutines / packages at runtime (basically, wherever the only alternative is to use eval STRING).

updated again, added some comments


In reply to Re: Variable Names and References by Joost
in thread Variable Names and References by chakram88

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.