Thread Regülarer Ausdrück zu einem hash array
(19 answers)
Opened by Tom99 at 2008-10-04 15:42
lies mal 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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |