Thread Variablennamen vorzubenennen
(12 answers)
Opened by chmod777 at 2011-01-26 06:14
Geht mit einer Stringersetzung.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 sub sub1 { my %para = %{ shift @_ }; my @option = @_; my $ausgabe; # @option enthält n Einzelwerte foreach (@option) { my $s = $para{text}; $s =~ s/\\n/\n/g; $s =~ s/\[\$_\]/$_/g; $ausgabe .= $s; } return $ausgabe; } my $ausgabe = sub1( { text => 'die option [$_] ist vorhanden\n' }, qw( Option1 Option2) ); print $ausgabe; //EDIT: Code verbessert Vielleicht missverstehe ich auch deine Aufgabenstellung. Last edited: 2011-01-26 10:57:42 +0100 (CET) |