8 Einträge, 1 Seite |
1 2 3 4 5 6 7
my $ref = [ [ qw( 1 2 ) ], [ qw( a b ) ], ]; print $ref->[0]->[1], $/; print $ref->[1]->[1], $/;
my @sub_result=($wert1, $wert2);
1 2 3 4
sub mySub { my @sub_result = ($wert1, $wert2); return wantarray ? @sub_result : \@sub_result; }
Struppi+2007-12-28 12:18:17--...
Aber deine obige Ausgabe zeigt das du ein AoA (array of Arrays) hast. Also musst du die einzelenen Einträge ebenfalls dereferenzieren.
1
2
3
4
5
my $string = $result->[0];
my $num = $result->[1];
# oder:
my( $string, $num ) = @$result;
my( $string, $num ) = mySub();
8 Einträge, 1 Seite |