Thread Variable in Array schreiben (9 answers)
Opened by Lumpi at 2009-05-11 19:48

neniro
 2009-05-11 20:11
#121499 #121499
User since
2008-12-14
79 Artikel
BenutzerIn
[default_avatar]
ich könnte schwören, dass dies genau jene Aufgabe ist zu der Hashes passen wie die Faust aufs Auge:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;

use Data::Dumper;

my @list = qw{jacke jeans shirt (kleidung) maus katze hund (tier) (kleidung) (tier)};

my %lut  = (
    "(kleidung)"  =>  "jacke",
    "(tier)"      =>  "elephant",
);

print Dumper [map { exists $lut{$_} ? $lut{$_} : $_ } @list];
-- yet another amateur perl hacker

View full thread Variable in Array schreiben