Thread use strict will nicht so recht mitmachen: kleine Syntaxfrage (7 answers)
Opened by Gast at 2007-03-23 14:32

Gast Gast
 2007-03-23 14:32
#75295 #75295
Hallo,

ich stehe irgendwie aufm Schlauch. Folgende Zeilen verursachen
eine Fehlermeldung
"Can't use string ("bb") as a SCALAR ref while "strict refs" in use at versuch.pl line 5.

Wieso akzeptiert das use strict diese Konstruktion nicht?

#!/usr/bin/perl
use strict;
my $a="b";
my $bb;
${"b$a"}="irgendetwas"; # <-- hier klemmts

Im voraus Danke für jeden Rat.
LG, Ralph

PS: Ein Array oder Hash kann ich nicht nehmen.

View full thread use strict will nicht so recht mitmachen: kleine Syntaxfrage