Thread Regülarer Ausdrück zu einem hash array (19 answers)
Opened by Tom99 at 2008-10-04 15:42

pq
 2008-10-04 15:49
#115150 #115150
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
lies mal Wiki:perlintro, da findest du basis-infos und links auf weitere perldocs,
teilweise auf deutsch übersetzt.
ungestestet:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
use Data::Dumper;
my %playerinfo;
if ($logline =~ m{ ^ /ip/ ([^/]+) /nickname/ ([^/]+) /wasanderes/ ([^/]+) }x) {
    my ($ip, $nick, $wasanderes) = ($1, $2, $3);
    $playerinfo{$nick} = {
        ip => $ip,
        wasanderes => $wasanderes,
    };
}
print Dumper \%playerinfo;
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Regülarer Ausdrück zu einem hash array