3 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/usr/bin/perl use strict; use warnings; my $file = '/path/to/file.txt'; my %hash; { #Abschnitstrenner auf "\n\n", siehe perldoc perlvar local $/ = "\n\n"; open my $fh, '<', $file or die $!; while( my $entry = <$fh> ){ my ($cat,$id) = $entry =~ /(cat=\d+).*(ID=[^,]+)/s; push @{ $hash{$id} }, $cat; } } for my $key ( keys %hash ){ print $key, " - " , join ":", @{ $hash{$key} },"\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#!/usr/bin/perl use strict; use warnings; my $file = '/path/to/file.txt'; my %hash; { #Abschnitstrenner auf "\n\n", siehe perldoc perlvar local $/ = "\n\n"; open my $fh, '<', $file or die $!; while( my $entry = <$fh> ){ my @cats = $entry =~ /(cat=\d+)/g; my ($id) = $entry =~ /(ID=[^,;]+)/; next unless $id; push @{ $hash{$id} }, @cats; } } for my $key ( keys %hash ){ print $key, " - " , join(" : ", @{ $hash{$key} }),"\n"; }
3 Einträge, 1 Seite |