8 Einträge, 1 Seite |
1
2
3
4
5
6
7
#!/usr/bin/perl
use strict;
my $a="b";
my $bb;
no strict 'refs';
${"b$a"}="irgendetwas"; # <-- hier klemmts
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl
use strict;
my $a="b";
my $bb;
{ # start no strict block
no strict 'refs';
${"b$a"}="irgendetwas";
} # end no strict block
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
# wo auch immer die Daten fuer @elements herkommen moegen
my @elements = qw( an be echna );
my %werte = ();
for my $elem ( @elements ) {
# pack deine daten in den hash
$werte{$elem . 'ton' } = $elem;
}
print Dumper( \%werte ), $/;
8 Einträge, 1 Seite |